mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
feac77ace3
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
635 B
Meson
11 lines
635 B
Meson
option('gst_player_tests', type: 'boolean', value: false,
|
|
description: 'Enable GstPlayer tests that need network access')
|
|
|
|
# Common options
|
|
option('orc', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto', yield : true)
|
|
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')
|