mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
meson: add glib-checks option to disable API guards and such
We want this enabled by default, also in releases, but people may want to disable this for performance-critical workloads or on embedded devices.
This commit is contained in:
parent
b71b9ec934
commit
6c37b359ee
2 changed files with 8 additions and 0 deletions
|
@ -230,6 +230,12 @@ if glib_asserts.disabled() or (glib_asserts.auto() and not gst_version_is_dev)
|
|||
add_project_arguments('-DG_DISABLE_ASSERT', language: 'c')
|
||||
endif
|
||||
|
||||
glib_checks = get_option('glib-checks')
|
||||
if glib_checks.disabled() or (glib_checks.auto() and not gst_version_is_dev)
|
||||
message('Disabling GLib checks')
|
||||
add_project_arguments('-DG_DISABLE_CHECKS', language: 'c')
|
||||
endif
|
||||
|
||||
presetdir = join_paths(get_option('datadir'), 'gstreamer-' + api_version, 'presets')
|
||||
|
||||
pkgconfig = import('pkgconfig')
|
||||
|
|
|
@ -27,6 +27,8 @@ option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
|
|||
description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
|
||||
option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
|
||||
description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
|
||||
option('glib-checks', type : 'feature', value : 'enabled', yield : true,
|
||||
description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)')
|
||||
|
||||
# Common options
|
||||
option('package-name', type : 'string', yield : true,
|
||||
|
|
Loading…
Reference in a new issue