Merge pull request #41 from maximumspatium/master

Enable conditional compilation of examples.
This commit is contained in:
Carlos Aragonés 2020-08-06 16:32:11 +02:00 committed by GitHub
commit 2110dc18ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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})