build: add option to disable example (#177)

This commit is contained in:
Randy 2021-09-24 16:12:17 +02:00 committed by GitHub
parent ee9460be8d
commit 7b3a71c7e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 3 deletions

View File

@ -10,6 +10,7 @@ set(SPNG_VERSION ${SPNG_MAJOR}.${SPNG_MINOR}.${SPNG_REVISION}-rc3)
option(ENABLE_OPT "Enable architecture-specific optimizations" ON) option(ENABLE_OPT "Enable architecture-specific optimizations" ON)
option(SPNG_SHARED "Build shared lib" ON) option(SPNG_SHARED "Build shared lib" ON)
option(SPNG_STATIC "Build static lib" ON) option(SPNG_STATIC "Build static lib" ON)
option(BUILD_EXAMPLES "Build examples" ON)
include(GNUInstallDirs) include(GNUInstallDirs)
@ -33,9 +34,11 @@ if(SPNG_SHARED)
target_link_libraries(spng ${spng_LIBS}) target_link_libraries(spng ${spng_LIBS})
install(TARGETS spng DESTINATION lib) install(TARGETS spng DESTINATION lib)
add_executable(example examples/example.c) if(BUILD_EXAMPLES)
target_include_directories(example PRIVATE ${PROJECT_SOURCE_DIR}/spng) add_executable(example examples/example.c)
target_link_libraries(example spng ${spng_LIBS}) target_include_directories(example PRIVATE ${PROJECT_SOURCE_DIR}/spng)
target_link_libraries(example spng ${spng_LIBS})
endif()
endif() endif()
if(SPNG_STATIC) if(SPNG_STATIC)

View File

@ -1 +1,5 @@
if get_option('build_examples') == false and get_option('dev_build') == false
subdir_done()
endif
example_exe = executable('example', 'example.c', dependencies : spng_dep) example_exe = executable('example', 'example.c', dependencies : spng_dep)

View File

@ -3,6 +3,7 @@ option('enable_opt', type : 'boolean', value : true, description : 'Enable archi
option('use_miniz', type : 'boolean', value : false, description : 'Compile with miniz instead of zlib, disables some features') option('use_miniz', type : 'boolean', value : false, description : 'Compile with miniz instead of zlib, disables some features')
option('static_zlib', type : 'boolean', value : false, description : 'Link zlib statically') option('static_zlib', type : 'boolean', value : false, description : 'Link zlib statically')
option('benchmarks', type : 'boolean', value : false, description : 'Enable benchmarks, requires Git LFS') option('benchmarks', type : 'boolean', value : false, description : 'Enable benchmarks, requires Git LFS')
option('build_examples', type : 'boolean', value : true, description : 'Build examples, overriden by dev_build')
# Not for end-users # Not for end-users