gstreamer/meson_options.txt
Nirbheek Chauhan 208258472c meson: Update option names to omit disable_ and with- prefixes
Also yield common options to the outer project (gst-build in our case)
so that they don't have to be set manually.
2018-05-05 20:31:43 +05:30

12 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')