meson: add option to disable example

This commit is contained in:
Randy 2021-09-24 15:39:12 +02:00
parent 084139b4d5
commit b242400042
2 changed files with 5 additions and 0 deletions

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)

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('static_zlib', type : 'boolean', value : false, description : 'Link zlib statically')
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