Skip to content
Snippets Groups Projects
Commit a6a8abce authored by Thibault Saunier's avatar Thibault Saunier :cactus:
Browse files

meson: Support building without Gst debug

parent 9f234a53
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,30 @@ plugins_install_dir = '@0@/gstreamer-1.0'.format(get_option('libdir'))
vs_module_defs_dir = meson.current_source_dir() + '/win32/common/'
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
configinc = include_directories('.')
subdir('ges')
subdir('plugins')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment