Configure gst-rtsp-server before gst-devtools
authorTim-Philipp Müller <tim@centricular.com>
Mon, 21 Jan 2019 17:38:07 +0000 (17:38 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 24 Jan 2019 19:51:17 +0000 (19:51 +0000)
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

meson.build

index 02af00a..5850415 100644 (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') },
 }