From 56f5c158fa0fb6f8d9f71c357bf980ce1f67e93f Mon Sep 17 00:00:00 2001 From: CJFEdu Date: Sat, 25 Jan 2025 08:45:58 -0600 Subject: [PATCH] Made Build All Examples the default --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b3af80b..ecb29d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,8 @@ project(clay) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") -option(CLAY_INCLUDE_ALL_EXAMPLES "Build all examples" OFF) -option(CLAY_INCLUDE_DEMOS "Build video demo and website" ON) +option(CLAY_INCLUDE_ALL_EXAMPLES "Build all examples" ON) +option(CLAY_INCLUDE_DEMOS "Build video demo and website" OFF) option(CLAY_INCLUDE_CPP_EXAMPLE "Build C++ example" OFF) option(CLAY_INCLUDE_RAYLIB_EXAMPLES "Build raylib examples" OFF) option(CLAY_INCLUDE_SDL2_EXAMPLES "Build SDL 2 examples" OFF)