gstreamer/tests/meson.build
Tim-Philipp Müller 03fcdedd66 meson: don't build icles when tests are disabled
They are manual tests, so let them be controlled
via the tests option not the examples option, for
consistency with -good.
2019-02-28 11:02:42 +00:00

8 lines
173 B
Meson

if not get_option('tests').disabled() and gstcheck_dep.found()
subdir('check')
subdir('icles')
endif
if not get_option('examples').disabled()
subdir('examples')
endif