mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
17 lines
994 B
Meson
17 lines
994 B
Meson
option('build_tools', type : 'boolean', value : true)
|
|
option('poisoning', type : 'boolean', value : false)
|
|
option('disable_gtkdoc', type : 'boolean', value : false)
|
|
option('disable_examples', type : 'boolean', value : false)
|
|
option('disable_gst_debug', type : 'boolean', value : false)
|
|
option('disable_registry', type : 'boolean', value : false)
|
|
option('library_format', type : 'combo', choices : ['shared', 'static', 'both'], value : 'shared')
|
|
option('disable_introspection',
|
|
type : 'boolean', value : false,
|
|
description : 'Whether to disable the introspection generation')
|
|
option('disable_libunwind',
|
|
type : 'boolean', value : false,
|
|
description : 'Whether to disable the usage of libunwind (to generate backtraces)')
|
|
option('with-package-name', type : 'string',
|
|
description : 'package name to use in plugins')
|
|
option('with-package-origin', type : 'string', value : 'Unknown package origin',
|
|
description : 'package origin URL to use in plugins')
|