summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-12-09 17:08:20 -0300
committerThibault Saunier <tsaunier@gnome.org>2016-12-09 18:29:47 -0300
commitc2d3c9834076414d546489be5cff38598f014776 (patch)
treef51b513afcdc18d5fd77c723f8f66e34805c35b7
parent2f62720d71a42f20f0b00a77881543e36adcb8d3 (diff)
meson: Support building without Gst debugHEADmaster
-rw-r--r--meson.build24
1 files changed, 24 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 737ca6bba..2bf2ac7a4 100644
--- a/meson.build
+++ b/meson.build
@@ -201,6 +201,30 @@ if host_machine.system() == 'windows'
pic_args = []
endif
+if gst_dep.type_name() == 'internal'
+ gst_proj = subproject('gstreamer')
+
+ if gst_proj.get_variable('disable_gst_debug')
+ message('GStreamer debug system is disabled')
+ add_project_arguments('-Wno-unused', language: 'c')
+ else
+ message('GStreamer debug system is enabled')
+ endif
+else
+ # We can't check that in the case of subprojects as we won't
+ # be able to build against an internal dependency (which is not built yet)
+ if not cc.compiles('''
+#include <gst/gstconfig.h>
+#ifdef GST_DISABLE_GST_DEBUG
+#error "debugging disabled, make compiler fail"
+#endif''' , dependencies: gst_dep)
+ message('GStreamer debug system is disabled')
+ add_project_arguments('-Wno-unused', language: 'c')
+ else
+ message('GStreamer debug system is enabled')
+ endif
+endif
+
gir = find_program('g-ir-scanner', required : false)
gnome = import('gnome')
build_gir = gir.found() and not meson.is_cross_build() and not get_option('disable_introspection')