Enable conditional compilation of examples.

This commit is contained in:
Maxim Poliakovski 2020-06-16 21:22:57 +02:00
parent 35110bf174
commit d658d8361b

View File

@ -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,38 +198,41 @@ link_libraries(minifb)
# Examples
#--------------------------------------
if(NOT IOS)
if (MINIFB_BUILD_EXAMPLES)
if(NOT IOS)
add_executable(noise
tests/noise.c
)
add_executable(noise
tests/noise.c
)
add_executable(input_events
tests/input_events.c
)
add_executable(input_events
tests/input_events.c
)
add_executable(input_events_cpp
tests/input_events_cpp.cpp
)
add_executable(input_events_cpp
tests/input_events_cpp.cpp
)
add_executable(multiple_windows
tests/multiple_windows.c
)
add_executable(multiple_windows
tests/multiple_windows.c
)
else()
else()
add_executable(noise
tests/ios/main.m
tests/ios/AppDelegate.h
tests/ios/AppDelegate.m
)
add_executable(noise
tests/ios/main.m
tests/ios/AppDelegate.h
tests/ios/AppDelegate.m
)
set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0" CACHE STRING "Set CMake deployment target" ${FORCE_CACHE})
set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0" CACHE STRING "Set CMake deployment target" ${FORCE_CACHE})
target_include_directories(noise PRIVATE src)
target_include_directories(noise PRIVATE src/ios)
target_include_directories(noise PRIVATE src)
target_include_directories(noise PRIVATE src/ios)
add_definitions(-DTVOS_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET})
add_definitions(-DTVOS_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET})
endif()
endif()