mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
meson_options: declare glib and gobject checks at top level
This makes it easier to specify this features for all subprojects. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2243>
This commit is contained in:
parent
7d862e0f5e
commit
18a66bd887
1 changed files with 10 additions and 0 deletions
|
@ -46,3 +46,13 @@ option('nls', type : 'feature', value : 'auto', description : 'Enable native lan
|
||||||
option('orc', type : 'feature', value : 'auto', description : 'Enable Optimized Inner Loop Runtime Compiler')
|
option('orc', type : 'feature', value : 'auto', description : 'Enable Optimized Inner Loop Runtime Compiler')
|
||||||
option('doc', type : 'feature', value : 'auto', description : 'Generate API documentation with hotdoc')
|
option('doc', type : 'feature', value : 'auto', description : 'Generate API documentation with hotdoc')
|
||||||
option('gtk_doc', type : 'feature', value : 'disabled', description : 'Generate API documentation with gtk-doc')
|
option('gtk_doc', type : 'feature', value : 'disabled', description : 'Generate API documentation with gtk-doc')
|
||||||
|
|
||||||
|
option('package-origin', type : 'string', value : 'Unknown package origin', yield : true,
|
||||||
|
description : 'package origin URL to use in plugins')
|
||||||
|
|
||||||
|
option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
|
||||||
|
description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
|
||||||
|
option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
|
||||||
|
description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
|
||||||
|
option('glib-checks', type : 'feature', value : 'enabled', yield : true,
|
||||||
|
description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)')
|
||||||
|
|
Loading…
Reference in a new issue