meson: Use feature option for tests option

This was somehow missed the last time around.
This commit is contained in:
Nirbheek Chauhan 2018-09-01 11:21:15 +05:30
parent 8a7f5cfe5f
commit 517757791e
4 changed files with 9 additions and 7 deletions

View 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()

View 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')

View 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)

View 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