diff options
author | ranguli <hello@joshmurphy.ca> | 2023-08-14 14:43:49 -0230 |
---|---|---|
committer | ranguli <hello@joshmurphy.ca> | 2023-08-14 14:45:55 -0230 |
commit | cfdece0082e006a234fc05d5d2c381d7c0d73e1d (patch) | |
tree | 58ff7097751f40450d5c9c478e24b80a94ee9288 | |
parent | 5f400940aa855b0e37fe8de7b29c314ce3427e6e (diff) | |
download | gamejam-slgj-2024-cfdece0082e006a234fc05d5d2c381d7c0d73e1d.tar.gz gamejam-slgj-2024-cfdece0082e006a234fc05d5d2c381d7c0d73e1d.tar.bz2 gamejam-slgj-2024-cfdece0082e006a234fc05d5d2c381d7c0d73e1d.zip |
Add more descriptive build output
-rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6ce26e2..6ac4767 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,9 +4,17 @@ set(CMAKE_C_STANDARD 99) # Adding Raylib include(FetchContent) +set(FETCHCONTENT_QUIET FALSE) set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) # don't build the supplied examples set(BUILD_GAMES OFF CACHE BOOL "" FORCE) # don't build the supplied example games -FetchContent_Declare(raylib GIT_REPOSITORY https://github.com/raysan5/raylib.git GIT_TAG master) + +FetchContent_Declare( + raylib + GIT_REPOSITORY "https://github.com/raysan5/raylib.git" + GIT_TAG "master" + GIT_PROGRESS TRUE +) + FetchContent_MakeAvailable(raylib) # Adding our source files |