tests: remove unused gststream.h file
[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('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files')
25
26 # Common feature options
27 option('examples', type : 'feature', value : 'auto', yield : true)
28 option('tests', type : 'feature', value : 'auto', yield : true)
29 option('benchmarks', type : 'feature', value : 'auto', yield : true)
30 option('tools', type : 'feature', value : 'auto', yield : true)
31 option('gtk_doc', type : 'feature', value : 'auto', yield : true, description : 'Generate API documentation with gtk-doc')
32 option('introspection', type : 'feature', value : 'auto', yield : true, description : 'Generate gobject-introspection bindings')
33 option('nls', type : 'feature', value : 'auto', yield: true, description : 'Enable native language support (translations)')
34 option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
35        description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
36 option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
37        description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
38 option('glib-checks', type : 'feature', value : 'enabled', yield : true,
39        description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)')
40
41 # Common options
42 option('package-name', type : 'string', yield : true,
43        description : 'package name to use in plugins')
44 option('package-origin', type : 'string', value : 'Unknown package origin', yield : true,
45        description : 'package origin URL to use in plugins')