mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-23 14:36:24 +00:00
This adds `gstdump` and `gst-dots-viewer` server, see the README for more details about what those tools do. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7999>
18 lines
982 B
Meson
18 lines
982 B
Meson
option('validate', type : 'feature', value : 'auto',
|
|
description : 'Build GstValidate')
|
|
option('dots_viewer', type : 'feature', value : 'auto',
|
|
description : 'Build gst-dots-viewer')
|
|
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)
|