gstreamer/tests/meson.build
Tim-Philipp Müller e5ad55d649 meson: add options to disable tests, examples, benchmarks and tools
And remove duplicate option 'poisoning' and unused 'build_tools' one.
2018-08-09 23:32:49 +01:00

13 lines
263 B
Meson

if not get_option('benchmarks').disabled()
subdir('benchmarks')
endif
if not get_option('tests').disabled()
subdir('check')
endif
if not get_option('examples').disabled()
subdir('examples')
endif
if not get_option('tools').disabled()
subdir('misc')
endif