gst-inspect: fix unused-const-variable error in windows
[platform/upstream/gstreamer.git] / meson_options.txt
1 option('gst_debug', type : 'boolean', value : true)
2 option('gst_parse', type : 'boolean', value : true,
3        description: 'Enable pipeline string parser')
4 option('registry', type : 'boolean', value : true)
5 option('tracer_hooks', type : 'boolean', value : true)
6 option('ptp-helper-setuid-user', type : 'string',
7        description : 'User to switch to when installing gst-ptp-helper setuid root')
8 option('ptp-helper-setuid-group', type : 'string',
9        description : 'Group to switch to when installing gst-ptp-helper setuid root')
10 option('ptp-helper-permissions', type : 'combo',
11        choices : ['none', 'setuid-root', 'capabilities', 'auto'], value : 'auto')
12 option('extra-checks', type : 'boolean', value : true, description : 'Enable extra runtime checks')
13 option('option-parsing', type : 'boolean', value : true,
14        description: 'Enable command line option parsing')
15 option('poisoning', type : 'boolean', value : false, description : 'Enable poisoning of deallocated objects')
16 option('memory-alignment', type: 'combo',
17        choices : ['1', '2', '4', '8', '16', '32', '64', '128', '256', '512', '1024', '2048', '4096', '8192', 'malloc', 'pagesize'],
18        value: 'malloc')
19
20 # Feature options
21 option('check', type : 'feature', value : 'auto', description : 'Build unit test libraries')
22 option('libunwind', type : 'feature', value : 'auto', description : 'Use libunwind to generate backtraces')
23 option('libdw', type : 'feature', value : 'auto', description : 'Use libdw to generate better backtraces from libunwind')
24 option('dbghelp', type : 'feature', value : 'auto', description : 'Use dbghelp to generate backtraces')
25 option('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files')
26
27 # Common feature options
28 option('examples', type : 'feature', value : 'auto', yield : true)
29 option('tests', type : 'feature', value : 'auto', yield : true)
30 option('benchmarks', type : 'feature', value : 'auto', yield : true)
31 option('tools', type : 'feature', value : 'auto', yield : true)
32 option('gtk_doc', type : 'feature', value : 'auto', yield : true, description : 'Generate API documentation with gtk-doc')
33 option('introspection', type : 'feature', value : 'auto', yield : true, description : 'Generate gobject-introspection bindings')
34 option('nls', type : 'feature', value : 'auto', yield: true, description : 'Enable native language support (translations)')
35 option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
36        description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
37 option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
38        description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
39 option('glib-checks', type : 'feature', value : 'enabled', yield : true,
40        description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)')
41
42 # Common options
43 option('package-name', type : 'string', yield : true,
44        description : 'package name to use in plugins')
45 option('package-origin', type : 'string', value : 'Unknown package origin', yield : true,
46        description : 'package origin URL to use in plugins')