mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
3baf94ed55
These are necessary for gst-build to set options correctly. The remaining automagic option is cgroup support in examples. https://bugzilla.gnome.org/show_bug.cgi?id=795107
11 lines
613 B
Meson
11 lines
613 B
Meson
option('introspection', type : 'feature', value : 'auto', yield : true,
|
|
description : 'Generate gobject-introspection bindings')
|
|
option('package-name', type : 'string', yield : true,
|
|
description : 'package name to use in plugins')
|
|
option('package-origin', type : 'string',
|
|
value : 'Unknown package origin', yield : true,
|
|
description : 'package origin URL to use in plugins')
|
|
option('tests', type : 'boolean', value : true,
|
|
description : 'Build and enable unit tests')
|
|
option('examples', type : 'feature', value : 'auto', yield : true,
|
|
description : 'Build the examples')
|