mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
d5d1bc4f1f
The "doc" option is available to disable the documentation.
12 lines
683 B
Meson
12 lines
683 B
Meson
option('validate', type : 'boolean', value : true,
|
|
description : 'Build GstValidate')
|
|
option('debug_viewer', type : 'boolean', value : true,
|
|
description : 'Build GstDebugViewer')
|
|
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.')
|