summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-02-21 19:50:33 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-02-21 19:50:33 +0000
commitd8f7969e417866dbeb5b5d8c8707db4c95b9a5b4 (patch)
tree9f101bc53c83f8a4d8a319026529fbc945d49af6
parent9fdfb2d7b7142a37f698b218610827210f58655b (diff)
meson: simplify GST_DISABLE_GST_DEBUG check and don't use add_global_*
add_global_arguments() can't be used in subprojects. It's entirely possible that devtools is a subproject but gstreamer is picked up from an installed location, so we should really use add_project_arguments() in both cases.
-rw-r--r--meson.build28
1 files changed, 8 insertions, 20 deletions
diff --git a/meson.build b/meson.build
index 9f0b93d..ed147fb 100644
--- a/meson.build
+++ b/meson.build
@@ -97,27 +97,15 @@ gnome = import('gnome')
gtkdoc = find_program('gtkdoc-scan', required : false)
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
+ gst_debug_disabled = subproject('gstreamer').get_variable('disable_gst_debug')
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
+ # 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)
+ gst_debug_disabled = cc.has_header_symbol('gst/gstconfig.h', 'GST_DISABLE_GST_DEBUG', dependencies: gst_dep)
+endif
+
+if gst_debug_disabled and cc.has_argument('-Wno-unused')
+ add_project_arguments('-Wno-unused', language: 'c')
endif
subdir('validate')