Configure gst-rtsp-server before gst-devtools

Since gst-devtools checks for gst-rtsp-server and will
happily pick up an external dep which isn't what we want
if we configure it as subproject afterwards.

This assumes meson dicts are always stable, which may
not necessarily be the case, but it seems to work in
practice for now.

See #16
This commit is contained in:
Tim-Philipp Müller 2019-01-21 17:38:07 +00:00
parent 2ffe372bdd
commit 33a3686995

View file

@ -41,9 +41,9 @@ subprojects = {
'gst-omx': { 'option': get_option('omx'), },
'gst-libav': { 'option': get_option('libav') },
'gstreamer-vaapi': { 'option': get_option('vaapi') },
'gst-rtsp-server': { 'option': get_option('rtsp_server') },
'gst-devtools': { 'option': get_option('devtools') },
'gst-editing-services': { 'option': get_option('ges') },
'gst-rtsp-server': { 'option': get_option('rtsp_server') },
'gstreamer-sharp': { 'option': get_option('sharp') },
}