mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 20:12:28 +00:00
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:
parent
dfa64559a6
commit
5b801e2f0e
1 changed files with 4 additions and 0 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue