From cfdece0082e006a234fc05d5d2c381d7c0d73e1d Mon Sep 17 00:00:00 2001 From: ranguli Date: Mon, 14 Aug 2023 14:43:49 -0230 Subject: Add more descriptive build output --- CMakeLists.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3