From 83b45abe74820935315714268dd114d42215b693 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 28 Feb 2019 08:52:28 +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. --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index d55175a..6db6240 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -1,8 +1,8 @@ if not get_option('tests').disabled() and gstcheck_dep.found() subdir('check') + subdir('icles') endif -subdir('icles') if not get_option('examples').disabled() subdir('examples') endif -- 2.7.4