From a46fc4300aec9ce056fefab3a8e2379d2e3f51e4 Mon Sep 17 00:00:00 2001 From: Severin Denisenko <81779013+SeverinDenisenko@users.noreply.github.com> Date: Sun, 22 Sep 2024 00:21:11 +0300 Subject: [PATCH] Use shallow clone on Raylib This change reduces time of project configuration from 24 second to 12 seconds --- examples/raylib-sidebar-scrolling-container/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/raylib-sidebar-scrolling-container/CMakeLists.txt b/examples/raylib-sidebar-scrolling-container/CMakeLists.txt index 89ccdfa..96c0a5e 100644 --- a/examples/raylib-sidebar-scrolling-container/CMakeLists.txt +++ b/examples/raylib-sidebar-scrolling-container/CMakeLists.txt @@ -12,6 +12,7 @@ FetchContent_Declare( GIT_REPOSITORY "https://github.com/raysan5/raylib.git" GIT_TAG "master" GIT_PROGRESS TRUE + GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(raylib)