Don't try to build ges if required dep isn't found

We shouldn't error out all of gst-build by default
if one of ges's required deps is not there.
This commit is contained in:
Tim-Philipp Müller 2017-08-03 23:45:52 +01:00
parent dfa64559a6
commit 5b801e2f0e

View file

@ -76,7 +76,11 @@ if not get_option('disable_gst_devtools')
endif
if not get_option('disable_gst_editing_services')
if dependency('libxml-2.0').found()
subprojects += ['gst-editing-services']
else
message('WARNING: not building gst-editing-services module, missing libxml-2.0')
endif
endif
if not get_option('disable_rtsp_server')