g-i: pass --quiet to g-ir-scanner
authorTim-Philipp Müller <tim@centricular.com>
Sat, 23 Mar 2019 18:58:06 +0000 (18:58 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 23 Mar 2019 18:58:06 +0000 (18:58 +0000)
This suppresses the annoying 'g-ir-scanner: link: cc ..' output
that we get even if everything works just fine.

We still get g-ir-scanner warnings and compiler warnings if
we pass this option.

meson.build

index 3c10943..c2f71ed 100644 (file)
@@ -410,7 +410,7 @@ gir_init_section = [ '--add-init-section=extern void gst_init(gint*,gchar**);' +
     'g_setenv("GST_REGISTRY_1.0", "@0@", TRUE);'.format(meson.current_build_dir() + '/gir_empty_registry.reg') + \
     'g_setenv("GST_PLUGIN_PATH_1_0", "", TRUE);' + \
     'g_setenv("GST_PLUGIN_SYSTEM_PATH_1_0", "", TRUE);' + \
-    'gst_init(NULL,NULL);' ]
+    'gst_init(NULL,NULL);', '--quiet']
 
 presetdir = join_paths(get_option('datadir'), 'gstreamer-' + api_version, 'presets')