mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
25 lines
1.3 KiB
Meson
25 lines
1.3 KiB
Meson
# Common feature options
|
|
option('doc', type : 'feature', value : 'auto', yield: true,
|
|
description: 'Enable documentation.')
|
|
option('examples', type : 'feature', value : 'auto', yield : true,
|
|
description : 'Build examples')
|
|
option('introspection', type : 'feature', value : 'auto', yield : true,
|
|
description : 'Generate gobject-introspection bindings')
|
|
option('tests', type : 'feature', value : 'auto', yield : true,
|
|
description : 'Build and enable unit tests')
|
|
option('tools', type : 'feature', value : 'auto', yield : true,
|
|
description : 'Build ges-launch command line tool')
|
|
|
|
# GES options
|
|
option('bash-completion', type : 'feature', value : 'auto',
|
|
description : 'Install bash completion files')
|
|
option('pygi-overrides-dir', type : 'string', value : '',
|
|
description: 'Path to pygobject overrides directory')
|
|
option('xptv', type : 'feature', value : 'auto',
|
|
description : 'Build the deprecated xptv formatter')
|
|
option('python', type : 'feature', value : 'auto', yield: true,
|
|
description: 'Enable python formatters.')
|
|
option('libpython-dir', type : 'string', value : '',
|
|
description: 'Path to find libpythonXX.so')
|
|
option('validate', type : 'feature', value : 'auto', yield: true,
|
|
description: 'Enable GstValidate integration.')
|