summaryrefslogtreecommitdiffhomepage
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-04-13 15:10:42 +0200
committerraysan5 <[email protected]>2020-04-13 15:10:42 +0200
commit26f39e41a931cfb9fa917636454a5bf6caae6cfc (patch)
tree18402a0bbb8fd11f77c1333da0d5cc1cba8cf505 /CMakeLists.txt
parentfd5d1dfcb6d740728f21cdd08ba8387b0ee2f899 (diff)
downloadraylib-26f39e41a931cfb9fa917636454a5bf6caae6cfc.tar.gz
raylib-26f39e41a931cfb9fa917636454a5bf6caae6cfc.zip
Remove games from building
Diffstat (limited to 'CMakeLists.txt')
-rwxr-xr-xCMakeLists.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bbac563c..c5f2fbd0 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,6 @@ set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
# Config options
option(BUILD_EXAMPLES "Build the examples." ON)
-option(BUILD_GAMES "Build the example games." ON)
option(ENABLE_ASAN "Enable AddressSanitizer (ASAN) for debugging (degrades performance)" OFF)
option(ENABLE_UBSAN "Enable UndefinedBehaviorSanitizer (UBSan) for debugging" OFF)
option(ENABLE_MSAN "Enable MemorySanitizer (MSan) for debugging (not recommended to run with ASAN)" OFF)
@@ -45,8 +44,4 @@ if (${BUILD_EXAMPLES})
add_subdirectory(examples)
endif()
-if (${BUILD_GAMES})
- add_subdirectory(games)
-endif()
-
enable_testing()