meson: Support building without Gst debug

This commit is contained in:
Thibault Saunier 2016-12-09 17:48:52 -03:00 committed by Thibault Saunier
parent 5619690ae1
commit eb728ad13b

View file

@ -332,6 +332,30 @@ else
cdata.set('DISABLE_ORC', 1)
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_global_arguments('-Wno-unused', language: 'c')
else
message('GStreamer debug system is enabled')
endif
endif
configure_file(input : 'config.h.meson',
output : 'config.h',
configuration : cdata)