summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-07-21 13:36:00 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-07-21 13:36:31 +0100
commit8edfec2cc3778a6fdebfa24c4f6eebe39af6c26c (patch)
treef34f358910ba2b09371844db314249f75f35bbcc
parentd72284bdf8700c40e6eaca5e060cbb850a59288e (diff)
meson: skip tests on windows for now
As we do in the other modules. As libgstcheck is currently not built on windows. Fixes "Fallback variable 'gst_check_dep' in the subproject 'gstreamer' does not exist"" Meson error.
-rw-r--r--tests/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 0e2c887..cd3aa67 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1 +1,3 @@
-subdir('check')
+if host_machine.system() != 'windows'
+ subdir('check')
+endif