mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
208258472c
Also yield common options to the outer project (gst-build in our case) so that they don't have to be set manually.
11 lines
610 B
Meson
11 lines
610 B
Meson
option('introspection', type : 'boolean', value : true, 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 : 'boolean', value : true, yield : true,
|
|
description : 'Build the examples')
|