meson: skip tests on windows for now
authorTim-Philipp Müller <tim@centricular.com>
Fri, 21 Jul 2017 12:36:00 +0000 (13:36 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 21 Jul 2017 12:36:31 +0000 (13:36 +0100)
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.

tests/meson.build

index 0e2c887..cd3aa67 100644 (file)
@@ -1 +1,3 @@
-subdir('check')
+if host_machine.system() != 'windows'
+  subdir('check')
+endif