meson: Add a feature option for tests

This autodetection is needed on iOS inside Cerbero where
gstreamer-check-1.0 is not available.
This commit is contained in:
Nirbheek Chauhan 2018-09-01 12:17:08 +05:30
parent 67f2be1987
commit efa220a615
3 changed files with 6 additions and 4 deletions

View file

@ -77,7 +77,8 @@ gstbase_dep = dependency('gstreamer-base-1.0', version : gst_req,
fallback : ['gstreamer', 'gst_base_dep'])
if host_machine.system() != 'windows'
gstcheck_dep = dependency('gstreamer-check-1.0', version : gst_req,
fallback : ['gstreamer', 'gst_check_dep'], required: false)
required : get_option('tests'),
fallback : ['gstreamer', 'gst_check_dep'])
endif
gstcontroller_dep = dependency('gstreamer-controller-1.0', version : gst_req,
fallback : ['gstreamer', 'gst_controller_dep'])

View file

@ -2,5 +2,7 @@ option('gtk_doc', type : 'feature', value : 'auto', yield : true,
description : 'Build API documentation with gtk-doc')
option('introspection', type : 'feature', value : 'auto', yield : true,
description : 'Generate gobject-introspection bindings')
option('tests', type : 'feature', value : 'auto', yield : true,
description : 'Build and enable unit tests')
option('pygi-overrides-dir', type : 'string', value : '',
description: 'Path to pygobject overrides directory')

View file

@ -1,7 +1,6 @@
# FIXME: make check work on windows
if host_machine.system() != 'windows'
subdir('check')
if host_machine.system() != 'windows' and gstcheck_dep.found()
subdir('check')
endif
subdir('validate')