meson: don't build icles when tests are disabled
authorTim-Philipp Müller <tim@centricular.com>
Thu, 28 Feb 2019 11:02:42 +0000 (11:02 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 28 Feb 2019 11:02:42 +0000 (11:02 +0000)
They are manual tests, so let them be controlled
via the tests option not the examples option, for
consistency with -good.

tests/meson.build

index f93eb9b..1455519 100644 (file)
@@ -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