summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2019-02-28 11:02:42 +0000
committerTim-Philipp Müller <tim@centricular.com>2019-02-28 11:02:42 +0000
commit03fcdedd66d82352a87002d402701b59f6e56b1f (patch)
tree198da0bb4c9f2fbfe18f3bfe3a6e0e4f3b29bbc5
parentd45604d9ebd2fab3233824dbc43b6ac787d58669 (diff)
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.
-rw-r--r--tests/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index f93eb9bfe..145551993 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,7 +1,7 @@
if not get_option('tests').disabled() and gstcheck_dep.found()
subdir('check')
+ subdir('icles')
endif
if not get_option('examples').disabled()
subdir('examples')
- subdir('icles')
endif