summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-12-09 17:45:34 -0300
committerThibault Saunier <tsaunier@gnome.org>2016-12-09 17:51:52 -0300
commit18f191070e94e3bfc20334d75eb5250aefb5bc98 (patch)
treee4359033b3a6a68c8ce2733d606e7bffa1768d20
parente9a5ba8dac1bbaf68b48591830d7e65ab1427aa1 (diff)
meson: Support building without Gst debug
-rw-r--r--meson.build24
1 files changed, 24 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index f5fdcbde..82de4a30 100644
--- a/meson.build
+++ b/meson.build
@@ -154,6 +154,30 @@ ugly_args = ['-DHAVE_CONFIG_H']
configinc = include_directories('.')
libsinc = include_directories('gst-libs')
+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_global_arguments('-Wno-unused', language: 'c')
+ else
+ message('GStreamer debug system is enabled')
+ endif
+endif
+
subdir('gst')
subdir('ext')
subdir('tests')