mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
tests: Enable testing on Windows
This commit is contained in:
parent
1edb2c4242
commit
90e801e62d
2 changed files with 5 additions and 10 deletions
|
@ -300,11 +300,9 @@ gst_base_dep = dependency('gstreamer-base-1.0', version : gst_req,
|
|||
fallback : ['gstreamer', 'gst_base_dep'])
|
||||
gst_net_dep = dependency('gstreamer-net-1.0', version : gst_req,
|
||||
fallback : ['gstreamer', 'gst_net_dep'])
|
||||
if host_system != 'windows'
|
||||
gst_check_dep = dependency('gstreamer-check-1.0', version : gst_req,
|
||||
required : get_option('tests'),
|
||||
fallback : ['gstreamer', 'gst_check_dep'])
|
||||
endif
|
||||
gst_check_dep = dependency('gstreamer-check-1.0', version : gst_req,
|
||||
required : get_option('tests'),
|
||||
fallback : ['gstreamer', 'gst_check_dep'])
|
||||
gst_controller_dep = dependency('gstreamer-controller-1.0', version : gst_req,
|
||||
fallback : ['gstreamer', 'gst_controller_dep'])
|
||||
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
# FIXME: make check work on windows
|
||||
if host_machine.system() != 'windows'
|
||||
if not get_option('tests').disabled() and gst_check_dep.found()
|
||||
subdir('check')
|
||||
endif
|
||||
if not get_option('tests').disabled() and gst_check_dep.found()
|
||||
subdir('check')
|
||||
endif
|
||||
if not get_option('examples').disabled()
|
||||
subdir('examples')
|
||||
|
|
Loading…
Reference in a new issue