Merge pull request #41 from maximumspatium/master
Enable conditional compilation of examples.
This commit is contained in:
commit
2110dc18ac
@ -84,6 +84,10 @@ set(CMAKE_CXX_STANDARD 11)
|
|||||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
set(CMAKE_CXX_EXTENSIONS OFF)
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||||
|
|
||||||
|
# Code generation options
|
||||||
|
#--------------------------------------
|
||||||
|
option(MINIFB_BUILD_EXAMPLES "Build minifb example programs" TRUE)
|
||||||
|
|
||||||
# Set GCC/Clang flags
|
# Set GCC/Clang flags
|
||||||
#--------------------------------------
|
#--------------------------------------
|
||||||
if (NOT MSVC)
|
if (NOT MSVC)
|
||||||
@ -194,7 +198,8 @@ link_libraries(minifb)
|
|||||||
|
|
||||||
# Examples
|
# Examples
|
||||||
#--------------------------------------
|
#--------------------------------------
|
||||||
if(NOT IOS)
|
if (MINIFB_BUILD_EXAMPLES)
|
||||||
|
if(NOT IOS)
|
||||||
|
|
||||||
add_executable(noise
|
add_executable(noise
|
||||||
tests/noise.c
|
tests/noise.c
|
||||||
@ -212,7 +217,7 @@ if(NOT IOS)
|
|||||||
tests/multiple_windows.c
|
tests/multiple_windows.c
|
||||||
)
|
)
|
||||||
|
|
||||||
else()
|
else()
|
||||||
|
|
||||||
add_executable(noise
|
add_executable(noise
|
||||||
tests/ios/main.m
|
tests/ios/main.m
|
||||||
@ -227,6 +232,8 @@ else()
|
|||||||
|
|
||||||
add_definitions(-DTVOS_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET})
|
add_definitions(-DTVOS_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET})
|
||||||
|
|
||||||
|
endif()
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
message("Done " ${PROJECT_NAME})
|
message("Done " ${PROJECT_NAME})
|
||||||
|
Loading…
Reference in New Issue
Block a user