mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-10-31 22:49:02 +00:00
16 lines
880 B
Meson
16 lines
880 B
Meson
option('validate', type : 'feature', value : 'auto',
|
|
description : 'Build GstValidate')
|
|
option('cairo', type : 'feature', value : 'auto', description : 'Build GstValidateVideo')
|
|
option('debug_viewer', type : 'feature', value : 'disabled',
|
|
description : 'Build GstDebugViewer (GPLv3+)')
|
|
|
|
# Common feature options
|
|
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('nls', type : 'feature', value : 'auto', yield: true,
|
|
description : 'Enable native language support (translations)')
|
|
option('doc', type : 'feature', value : 'auto', yield: true,
|
|
description: 'Enable documentation.')
|
|
option('tools', type : 'feature', value : 'auto', yield : true)
|