2018-05-05 13:38:09 +00:00
|
|
|
option('gst_debug', type : 'boolean', value : true)
|
2018-08-09 23:08:43 +00:00
|
|
|
option('gst_parse', type : 'boolean', value : true,
|
|
|
|
description: 'Enable pipeline string parser')
|
2018-05-05 13:38:09 +00:00
|
|
|
option('registry', type : 'boolean', value : true)
|
|
|
|
option('tracer_hooks', type : 'boolean', value : true)
|
|
|
|
option('ptp-helper-setuid-user', type : 'string',
|
2018-07-25 02:04:19 +00:00
|
|
|
description : 'User to switch to when installing gst-ptp-helper setuid root')
|
2018-05-05 13:38:09 +00:00
|
|
|
option('ptp-helper-setuid-group', type : 'string',
|
2018-07-25 02:04:19 +00:00
|
|
|
description : 'Group to switch to when installing gst-ptp-helper setuid root')
|
2018-05-05 13:38:09 +00:00
|
|
|
option('ptp-helper-permissions', type : 'combo',
|
2017-05-05 10:49:08 +00:00
|
|
|
choices : ['none', 'setuid-root', 'capabilities', 'auto'], value : 'auto')
|
2018-08-09 23:18:55 +00:00
|
|
|
option('option-parsing', type : 'boolean', value : true,
|
|
|
|
description: 'Enable command line option parsing')
|
2018-08-03 09:35:07 +00:00
|
|
|
option('poisoning', type : 'boolean', value : false, description : 'Enable poisoning of deallocated objects')
|
2018-08-09 23:33:58 +00:00
|
|
|
option('memory-alignment', type: 'combo',
|
|
|
|
choices : ['1', '2', '4', '8', '16', '32', '64', '128', '256', '512', '1024', '2048', '4096', '8192', 'malloc', 'pagesize'],
|
|
|
|
value: 'malloc')
|
2018-07-25 02:04:19 +00:00
|
|
|
|
|
|
|
# Feature options
|
2018-08-10 00:23:35 +00:00
|
|
|
option('check', type : 'feature', value : 'auto', description : 'Build unit test libraries')
|
2018-07-25 02:04:19 +00:00
|
|
|
option('libunwind', type : 'feature', value : 'auto', description : 'Use libunwind to generate backtraces')
|
2018-11-24 02:22:21 +00:00
|
|
|
option('libdw', type : 'feature', value : 'auto', description : 'Use libdw to generate better backtraces from libunwind')
|
2019-01-25 01:36:18 +00:00
|
|
|
option('dbghelp', type : 'feature', value : 'auto', description : 'Use dbghelp to generate backtraces')
|
2018-07-25 02:04:19 +00:00
|
|
|
option('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files')
|
2019-12-03 20:40:59 +00:00
|
|
|
option('coretracers', type : 'feature', value : 'auto', description : 'Build coretracers plugin')
|
2018-07-25 02:04:19 +00:00
|
|
|
|
|
|
|
# Common feature options
|
|
|
|
option('examples', type : 'feature', value : 'auto', yield : true)
|
2018-08-09 22:32:49 +00:00
|
|
|
option('tests', type : 'feature', value : 'auto', yield : true)
|
|
|
|
option('benchmarks', type : 'feature', value : 'auto', yield : true)
|
|
|
|
option('tools', type : 'feature', value : 'auto', yield : true)
|
2018-07-25 02:04:19 +00:00
|
|
|
option('introspection', type : 'feature', value : 'auto', yield : true, description : 'Generate gobject-introspection bindings')
|
|
|
|
option('nls', type : 'feature', value : 'auto', yield: true, description : 'Enable native language support (translations)')
|
2018-08-11 17:17:29 +00:00
|
|
|
option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
|
2018-09-19 10:25:24 +00:00
|
|
|
description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
|
2018-08-11 17:17:29 +00:00
|
|
|
option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
|
2018-09-19 10:25:24 +00:00
|
|
|
description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
|
2018-09-19 10:31:43 +00:00
|
|
|
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)')
|
2020-04-08 16:09:10 +00:00
|
|
|
option('extra-checks', type : 'feature', value : 'enabled', yield : true, description : 'Enable extra runtime checks')
|
2018-05-05 13:38:09 +00:00
|
|
|
|
|
|
|
# Common options
|
|
|
|
option('package-name', type : 'string', yield : true,
|
|
|
|
description : 'package name to use in plugins')
|
|
|
|
option('package-origin', type : 'string', value : 'Unknown package origin', yield : true,
|
|
|
|
description : 'package origin URL to use in plugins')
|
2018-10-22 06:14:11 +00:00
|
|
|
option('doc', type : 'feature', value : 'auto', yield: true,
|
|
|
|
description: 'Enable documentation.')
|