meson: Use feature option for tests option
authorNirbheek Chauhan <nirbheek@centricular.com>
Sat, 1 Sep 2018 05:51:15 +0000 (11:21 +0530)
committerNirbheek Chauhan <nirbheek@centricular.com>
Sat, 1 Sep 2018 05:53:54 +0000 (11:23 +0530)
This was somehow missed the last time around.

meson.build
meson_options.txt
tests/check/meson.build
tests/meson.build

index 2d79283..77be55f 100644 (file)
@@ -116,6 +116,11 @@ gstapp_dep = dependency('gstreamer-app-1.0', version : gst_req,
   fallback : ['gst-plugins-base', 'app_dep'])
 gstnet_dep = dependency('gstreamer-net-1.0', version : gst_req,
   fallback : ['gstreamer', 'gst_net_dep'])
+if host_machine.system() != 'windows'
+  gstcheck_dep = dependency('gstreamer-check-1.0', version : gst_req,
+    required : get_option('tests'),
+    fallback : ['gstreamer', 'gst_check_dep'])
+endif
 
 gir = find_program('g-ir-scanner', required : get_option('introspection'))
 gnome = import('gnome')
@@ -134,7 +139,7 @@ if get_option('default_library') == 'shared'
 endif
 
 subdir('gst')
-if get_option('tests')
+if not get_option('tests').disabled()
   subdir('tests')
 endif
 if not get_option('examples').disabled()
index eb6f20f..40d676f 100644 (file)
@@ -5,7 +5,7 @@ option('package-name', type : 'string', yield : true,
 option('package-origin', type : 'string',
        value : 'Unknown package origin', yield : true,
        description : 'package origin URL to use in plugins')
-option('tests', type : 'boolean', value : true,
+option('tests', type : 'feature', value : 'auto', yield : true,
        description : 'Build and enable unit tests')
 option('examples', type : 'feature', value : 'auto', yield : true,
        description : 'Build the examples')
index 71db67f..fb9eb9b 100644 (file)
@@ -1,8 +1,4 @@
 # FIXME: something is wrong with plugin paths / whitelisting here
-gstcheck_dep = dependency('gstreamer-check-1.0', version : gst_req,
-  fallback : ['gstreamer', 'gst_check_dep'])
-
-
 pluginsdirs = []
 if gst_dep.type_name() == 'pkgconfig'
   pbase = dependency('gstreamer-plugins-base-' + api_version, required : false)
index f87683d..5374bcb 100644 (file)
@@ -1,4 +1,5 @@
-if host_machine.system() != 'windows'
+# FIXME: make check work on windows
+if host_machine.system() != 'windows' and gstcheck_dep.found()
   subdir('check')
 endif