diff options
| author | Ahmad Fatoum <[email protected]> | 2018-05-20 19:47:19 +0200 |
|---|---|---|
| committer | Ahmad Fatoum <[email protected]> | 2018-05-21 01:08:28 +0200 |
| commit | 20ddc6a2bb4cbd39c460d8fa5d1f7175095bba2f (patch) | |
| tree | 7c5b9a2fecf5ed34d358853975c4d53113966129 | |
| parent | a752092055ca7c6c3d9d2b74d6ab212db14d0909 (diff) | |
| download | raylib-20ddc6a2bb4cbd39c460d8fa5d1f7175095bba2f.tar.gz raylib-20ddc6a2bb4cbd39c460d8fa5d1f7175095bba2f.zip | |
Move utils.cmake to separate cmake/ directory
| -rwxr-xr-x | cmake/utils.cmake (renamed from utils.cmake) | 0 | ||||
| -rw-r--r-- | examples/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | games/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | games/drturtle/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | games/just_do/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | games/koala_seasons/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | games/light_my_ritual/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | games/skully_escape/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | games/wave_collector/CMakeLists.txt | 2 | ||||
| -rwxr-xr-x | src/CMakeLists.txt | 2 |
10 files changed, 9 insertions, 9 deletions
diff --git a/utils.cmake b/cmake/utils.cmake index 27f74e68..27f74e68 100755 --- a/utils.cmake +++ b/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 $<TARGET_OBJECTS:glfw_objlib>) endif() -include("../utils.cmake") +include("../cmake/utils.cmake") if(USE_AUDIO) file(GLOB stb_vorbis external/stb_vorbis.c) |
