summaryrefslogtreecommitdiffhomepage
path: root/projects/CMake/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'projects/CMake/CMakeLists.txt')
-rw-r--r--projects/CMake/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/CMake/CMakeLists.txt b/projects/CMake/CMakeLists.txt
index 68c976e5..cf1d65a6 100644
--- a/projects/CMake/CMakeLists.txt
+++ b/projects/CMake/CMakeLists.txt
@@ -18,8 +18,8 @@ if (NOT raylib_FOUND) # If there's none, fetch and build raylib
set(FETCHCONTENT_QUIET NO)
FetchContent_Populate(raylib)
- set(BUILD_EXAMPLES OFF) # don't build the supplied examples
- set(BUILD_GAMES OFF) # or games
+ set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) # don't build the supplied examples
+ set(BUILD_GAMES OFF CACHE BOOL "" FORCE) # or games
# build raylib
add_subdirectory(${raylib_SOURCE_DIR} ${raylib_BINARY_DIR})