Enable conditional compilation of examples.
This commit is contained in:
parent
35110bf174
commit
d658d8361b
@ -84,6 +84,10 @@ set(CMAKE_CXX_STANDARD 11)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||
|
||||
# Code generation options
|
||||
#--------------------------------------
|
||||
option(MINIFB_BUILD_EXAMPLES "Build minifb example programs" TRUE)
|
||||
|
||||
# Set GCC/Clang flags
|
||||
#--------------------------------------
|
||||
if (NOT MSVC)
|
||||
@ -194,6 +198,7 @@ link_libraries(minifb)
|
||||
|
||||
# Examples
|
||||
#--------------------------------------
|
||||
if (MINIFB_BUILD_EXAMPLES)
|
||||
if(NOT IOS)
|
||||
|
||||
add_executable(noise
|
||||
@ -229,4 +234,6 @@ else()
|
||||
|
||||
endif()
|
||||
|
||||
endif()
|
||||
|
||||
message("Done " ${PROJECT_NAME})
|
||||
|
Loading…
Reference in New Issue
Block a user