Move utils.cmake to separate cmake/ directory
This commit is contained in:
parent
a752092055
commit
20ddc6a2bb
10 changed files with 9 additions and 9 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Setup the project and settings
|
# Setup the project and settings
|
||||||
project(examples)
|
project(examples)
|
||||||
|
|
||||||
include("../utils.cmake")
|
include("../cmake/utils.cmake")
|
||||||
|
|
||||||
# Make sure raylib has been built
|
# Make sure raylib has been built
|
||||||
# TODO `build` directory should maybe be something else...
|
# TODO `build` directory should maybe be something else...
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Setup the project and settings
|
# Setup the project and settings
|
||||||
project(games)
|
project(games)
|
||||||
|
|
||||||
include("../utils.cmake")
|
include("../cmake/utils.cmake")
|
||||||
|
|
||||||
# Make sure raylib has been built
|
# Make sure raylib has been built
|
||||||
# TODO `build` directory should maybe be something else...
|
# TODO `build` directory should maybe be something else...
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Setup the project and settings
|
# Setup the project and settings
|
||||||
project(drturtle)
|
project(drturtle)
|
||||||
|
|
||||||
include("../../utils.cmake")
|
include("../../cmake/utils.cmake")
|
||||||
|
|
||||||
|
|
||||||
# Make sure raylib has been built
|
# Make sure raylib has been built
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Setup the project and settings
|
# Setup the project and settings
|
||||||
project(just_do)
|
project(just_do)
|
||||||
|
|
||||||
include("../../utils.cmake")
|
include("../../cmake/utils.cmake")
|
||||||
|
|
||||||
|
|
||||||
# Make sure raylib has been built
|
# Make sure raylib has been built
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Setup the project and settings
|
# Setup the project and settings
|
||||||
project(koala_seasons)
|
project(koala_seasons)
|
||||||
|
|
||||||
include("../../utils.cmake")
|
include("../../cmake/utils.cmake")
|
||||||
|
|
||||||
|
|
||||||
# Make sure raylib has been built
|
# Make sure raylib has been built
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Setup the project and settings
|
# Setup the project and settings
|
||||||
project(light_my_ritual)
|
project(light_my_ritual)
|
||||||
|
|
||||||
include("../../utils.cmake")
|
include("../../cmake/utils.cmake")
|
||||||
|
|
||||||
|
|
||||||
# Make sure raylib has been built
|
# Make sure raylib has been built
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Setup the project and settings
|
# Setup the project and settings
|
||||||
project(skully_escape)
|
project(skully_escape)
|
||||||
|
|
||||||
include("../../utils.cmake")
|
include("../../cmake/utils.cmake")
|
||||||
|
|
||||||
|
|
||||||
# Make sure raylib has been built
|
# Make sure raylib has been built
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Setup the project and settings
|
# Setup the project and settings
|
||||||
project(wave_collector)
|
project(wave_collector)
|
||||||
|
|
||||||
include("../../utils.cmake")
|
include("../../cmake/utils.cmake")
|
||||||
|
|
||||||
|
|
||||||
# Make sure raylib has been built
|
# Make sure raylib has been built
|
||||||
|
|
|
@ -39,7 +39,7 @@ if(NOT glfw3_FOUND)
|
||||||
list(APPEND raylib_sources $<TARGET_OBJECTS:glfw_objlib>)
|
list(APPEND raylib_sources $<TARGET_OBJECTS:glfw_objlib>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include("../utils.cmake")
|
include("../cmake/utils.cmake")
|
||||||
|
|
||||||
if(USE_AUDIO)
|
if(USE_AUDIO)
|
||||||
file(GLOB stb_vorbis external/stb_vorbis.c)
|
file(GLOB stb_vorbis external/stb_vorbis.c)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue