mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
meson: make debug_viewer a feature option
... and disable by default. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/199>
This commit is contained in:
parent
ca8cdfd736
commit
5a8fcfa663
2 changed files with 3 additions and 3 deletions
|
@ -148,7 +148,7 @@ if not get_option('validate').disabled()
|
||||||
subdir('validate')
|
subdir('validate')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('debug_viewer')
|
if not get_option('debug_viewer').disabled()
|
||||||
subdir('debug-viewer')
|
subdir('debug-viewer')
|
||||||
endif
|
endif
|
||||||
subdir('docs')
|
subdir('docs')
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
option('validate', type : 'feature', value : 'auto',
|
option('validate', type : 'feature', value : 'auto',
|
||||||
description : 'Build GstValidate')
|
description : 'Build GstValidate')
|
||||||
option('debug_viewer', type : 'boolean', value : true,
|
option('debug_viewer', type : 'feature', value : 'disabled',
|
||||||
description : 'Build GstDebugViewer')
|
description : 'Build GstDebugViewer (GPLv3+)')
|
||||||
option('introspection', type : 'feature', value : 'auto', yield : true,
|
option('introspection', type : 'feature', value : 'auto', yield : true,
|
||||||
description : 'Generate gobject-introspection bindings')
|
description : 'Generate gobject-introspection bindings')
|
||||||
option('tests', type : 'feature', value : 'auto', yield : true,
|
option('tests', type : 'feature', value : 'auto', yield : true,
|
||||||
|
|
Loading…
Reference in a new issue