Parcourir la source

Move utils.cmake to separate cmake/ directory

pull/546/head
Ahmad Fatoum il y a 6 ans
Parent
révision
20ddc6a2bb
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: C3EAC3DE9321D59B
10 fichiers modifiés avec 9 ajouts et 9 suppressions
  1. +0
    -0
      cmake/utils.cmake
  2. +1
    -1
      examples/CMakeLists.txt
  3. +1
    -1
      games/CMakeLists.txt
  4. +1
    -1
      games/drturtle/CMakeLists.txt
  5. +1
    -1
      games/just_do/CMakeLists.txt
  6. +1
    -1
      games/koala_seasons/CMakeLists.txt
  7. +1
    -1
      games/light_my_ritual/CMakeLists.txt
  8. +1
    -1
      games/skully_escape/CMakeLists.txt
  9. +1
    -1
      games/wave_collector/CMakeLists.txt
  10. +1
    -1
      src/CMakeLists.txt

utils.cmake → cmake/utils.cmake Voir le fichier


+ 1
- 1
examples/CMakeLists.txt Voir le fichier

@ -1,7 +1,7 @@
# Setup the project and settings
project(examples)
include("../utils.cmake")
include("../cmake/utils.cmake")
# Make sure raylib has been built
# TODO `build` directory should maybe be something else...

+ 1
- 1
games/CMakeLists.txt Voir le fichier

@ -1,7 +1,7 @@
# Setup the project and settings
project(games)
include("../utils.cmake")
include("../cmake/utils.cmake")
# Make sure raylib has been built
# TODO `build` directory should maybe be something else...

+ 1
- 1
games/drturtle/CMakeLists.txt Voir le fichier

@ -1,7 +1,7 @@
# Setup the project and settings
project(drturtle)
include("../../utils.cmake")
include("../../cmake/utils.cmake")
# Make sure raylib has been built

+ 1
- 1
games/just_do/CMakeLists.txt Voir le fichier

@ -1,7 +1,7 @@
# Setup the project and settings
project(just_do)
include("../../utils.cmake")
include("../../cmake/utils.cmake")
# Make sure raylib has been built

+ 1
- 1
games/koala_seasons/CMakeLists.txt Voir le fichier

@ -1,7 +1,7 @@
# Setup the project and settings
project(koala_seasons)
include("../../utils.cmake")
include("../../cmake/utils.cmake")
# Make sure raylib has been built

+ 1
- 1
games/light_my_ritual/CMakeLists.txt Voir le fichier

@ -1,7 +1,7 @@
# Setup the project and settings
project(light_my_ritual)
include("../../utils.cmake")
include("../../cmake/utils.cmake")
# Make sure raylib has been built

+ 1
- 1
games/skully_escape/CMakeLists.txt Voir le fichier

@ -1,7 +1,7 @@
# Setup the project and settings
project(skully_escape)
include("../../utils.cmake")
include("../../cmake/utils.cmake")
# Make sure raylib has been built

+ 1
- 1
games/wave_collector/CMakeLists.txt Voir le fichier

@ -1,7 +1,7 @@
# Setup the project and settings
project(wave_collector)
include("../../utils.cmake")
include("../../cmake/utils.cmake")
# Make sure raylib has been built

+ 1
- 1
src/CMakeLists.txt Voir le fichier

@ -39,7 +39,7 @@ if(NOT glfw3_FOUND)
list(APPEND raylib_sources $<TARGET_OBJECTS:glfw_objlib>)
endif()
include("../utils.cmake")
include("../cmake/utils.cmake")
if(USE_AUDIO)
file(GLOB stb_vorbis external/stb_vorbis.c)

Chargement…
Annuler
Enregistrer