From 03fcdedd66d82352a87002d402701b59f6e56b1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 28 Feb 2019 11:02:42 +0000 Subject: [PATCH] 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. --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index f93eb9bfe9..1455519934 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