diff --git a/utils.cmake b/cmake/utils.cmake similarity index 100% rename from utils.cmake rename to cmake/utils.cmake diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 1f05d529..ae882444 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -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... diff --git a/games/CMakeLists.txt b/games/CMakeLists.txt index 278d1330..35c99139 100644 --- a/games/CMakeLists.txt +++ b/games/CMakeLists.txt @@ -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... diff --git a/games/drturtle/CMakeLists.txt b/games/drturtle/CMakeLists.txt index 59813fb3..bdd91970 100644 --- a/games/drturtle/CMakeLists.txt +++ b/games/drturtle/CMakeLists.txt @@ -1,7 +1,7 @@ # Setup the project and settings project(drturtle) -include("../../utils.cmake") +include("../../cmake/utils.cmake") # Make sure raylib has been built diff --git a/games/just_do/CMakeLists.txt b/games/just_do/CMakeLists.txt index 11644008..4c5e1ee4 100644 --- a/games/just_do/CMakeLists.txt +++ b/games/just_do/CMakeLists.txt @@ -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 diff --git a/games/koala_seasons/CMakeLists.txt b/games/koala_seasons/CMakeLists.txt index 16069a7e..f79ab911 100644 --- a/games/koala_seasons/CMakeLists.txt +++ b/games/koala_seasons/CMakeLists.txt @@ -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 diff --git a/games/light_my_ritual/CMakeLists.txt b/games/light_my_ritual/CMakeLists.txt index 1e2cafe1..11d2e4f4 100644 --- a/games/light_my_ritual/CMakeLists.txt +++ b/games/light_my_ritual/CMakeLists.txt @@ -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 diff --git a/games/skully_escape/CMakeLists.txt b/games/skully_escape/CMakeLists.txt index d14f52d9..337e1db5 100644 --- a/games/skully_escape/CMakeLists.txt +++ b/games/skully_escape/CMakeLists.txt @@ -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 diff --git a/games/wave_collector/CMakeLists.txt b/games/wave_collector/CMakeLists.txt index c16bd426..ca6c37b8 100644 --- a/games/wave_collector/CMakeLists.txt +++ b/games/wave_collector/CMakeLists.txt @@ -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 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 458b9606..4b32de10 100755 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -39,7 +39,7 @@ if(NOT glfw3_FOUND) list(APPEND raylib_sources $) endif() -include("../utils.cmake") +include("../cmake/utils.cmake") if(USE_AUDIO) file(GLOB stb_vorbis external/stb_vorbis.c)