meson: add options to set package name and origin
[platform/upstream/gstreamer.git] / meson_options.txt
1 option('build_tools', type : 'boolean', value : true)
2 option('poisoning', type : 'boolean', value : false)
3 option('disable_gtkdoc', type : 'boolean', value : false)
4 option('disable_examples', type : 'boolean', value : false)
5 option('disable_gst_debug', type : 'boolean', value : false)
6 option('disable_registry', type : 'boolean', value : false)
7 option('library_format', type : 'combo', choices : ['shared', 'static', 'both'], value : 'shared')
8 option('disable_introspection',
9         type : 'boolean', value : false,
10         description : 'Whether to disable the introspection generation')
11 option('disable_libunwind',
12         type : 'boolean', value : false,
13         description : 'Whether to disable the usage of libunwind (to generate backtraces)')
14 option('with-package-name', type : 'string',
15        description : 'package name to use in plugins')
16 option('with-package-origin', type : 'string', value : 'Unknown package origin',
17        description : 'package origin URL to use in plugins')
18 option('with-ptp-helper-setuid-user', type : 'string',
19         description : 'User to switch to when installing gst-ptp-helper setuid root')
20 option('with-ptp-helper-setuid-group', type : 'string',
21         description : 'Group to switch to when installing gst-ptp-helper setuid root')
22 option('with-ptp-helper-permissions', type : 'combo',
23        choices : ['none', 'setuid-root', 'capabilities', 'auto'], value : 'auto')