mirror of
https://github.com/randy408/libspng
synced 2025-03-28 21:13:20 +00:00
build: add option to disable example (#177)
This commit is contained in:
parent
ee9460be8d
commit
7b3a71c7e7
@ -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)
|
||||||
|
@ -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)
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user