mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
65536f25dd
Also yield common options to the outer project (gst-build in our case) so that they don't have to be set manually.
12 lines
659 B
Meson
12 lines
659 B
Meson
# Enable V4L2 plugin to probe devices at plugin load
|
|
option('v4l2-probe', type : 'boolean', value : true,
|
|
description : 'Probe v4l2 devices when the v4l2 plugin is loaded')
|
|
option('libv4l2', type : 'boolean', value : true,
|
|
description : 'Use libv4l2 for some obscure format conversions')
|
|
|
|
# Common options
|
|
option('orc', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
|
|
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')
|