mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
meson: add option to disable command-line option parsing
This commit is contained in:
parent
ce4698487e
commit
d11450f238
2 changed files with 3 additions and 0 deletions
|
@ -80,6 +80,7 @@ cdata.set_quoted('GST_PLUGIN_SCANNER_INSTALLED', join_paths(prefix, helpers_inst
|
|||
cdata.set_quoted('GST_PTP_HELPER_INSTALLED', join_paths(prefix, helpers_install_dir, 'gst-ptp-helper'))
|
||||
cdata.set_quoted('GST_PLUGIN_SCANNER_SUBDIR', libexecdir,
|
||||
description: 'libexecdir path component, used to find plugin-scanner on relocatable builds on windows')
|
||||
cdata.set('GST_DISABLE_OPTION_PARSING', not get_option('option-parsing'))
|
||||
|
||||
if host_system == 'darwin'
|
||||
cdata.set_quoted('GST_EXTRA_MODULE_SUFFIX', '.dylib')
|
||||
|
|
|
@ -10,6 +10,8 @@ option('ptp-helper-setuid-group', type : 'string',
|
|||
option('ptp-helper-permissions', type : 'combo',
|
||||
choices : ['none', 'setuid-root', 'capabilities', 'auto'], value : 'auto')
|
||||
option('extra-checks', type : 'boolean', value : true, description : 'Enable extra runtime checks')
|
||||
option('option-parsing', type : 'boolean', value : true,
|
||||
description: 'Enable command line option parsing')
|
||||
option('poisoning', type : 'boolean', value : false, description : 'Enable poisoning of deallocated objects')
|
||||
|
||||
# Feature options
|
||||
|
|
Loading…
Reference in a new issue