mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
f3ad7d1b49
So that it can be explicitly disabled to avoid pulling in pixman which doesn't build on Windows ARM64 yet. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1570>
15 lines
816 B
Meson
15 lines
816 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.')
|