forked from tizonia/tizonia-openmax-il
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
96 lines (95 loc) · 2.94 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
option('blocking-etb-ftb', type: 'boolean', value: 'false', description: 'Enable fully conformant blocking behaviour of ETB and FTB APIs')
option('blocking-sendcommand', type: 'boolean', value: 'false', description: 'Enable fully conformant blocking behaviour of SendCommand API')
option('player', type: 'boolean', value: 'true', description: 'build the command-line player program (default: enabled)')
option('libspotify', type: 'boolean', value: 'true', description: 'build the libspotify-based OpenMAX IL plugin (default: yes)')
option('alsa', type: 'boolean', value: 'true', description: 'build the ALSA-based OpenMAX IL plugin (default: yes)')
option('aac', type: 'boolean', value: 'true', description: 'build the AAC-based OpenMAX IL plugin (default: yes)')
option('gcc-warnings', type: 'boolean', value: 'false', description: 'turn on lots of GCC warnings (for developers)')
option('test', type: 'boolean', value: 'false', description: 'build the test programs (default: disabled)')
option('bashcompletiondir', type: 'string', value: '', description: 'Bash completions directory')
option('zshcompletiondir', type: 'string', value: '', description: 'Zsh completions directory')
# this was not present in the original
option('docs', type: 'boolean', value: 'false', description: 'build the documentation (default: disabled)')
# likewise
option('docs_options', type: 'array', description: 'which documentation to build',
choices: [
'html',
'dirhtml',
'singlehtml',
'pickle',
'json',
'htmlhelp',
'qthelp',
'devhelp',
'epub',
'latex',
'latexpdf',
'text',
'man',
'texinfo',
'info',
'gettext',
'changes',
'linkcheck'
],
value: ['man', 'html']
)
option('docs_paper', type: 'combo', choices: ['a4', 'legal'], value: 'a4')
option('clients', type: 'boolean', value: 'true', description: 'build the clients (default: enabled)')
option('plugins', type: 'array', description: 'which plugins to build',
choices: [
'aac_decoder',
'chromecast_renderer',
'file_reader',
'file_writer',
'flac_decoder',
'http_renderer',
'http_source',
'inproc_reader',
'inproc_writer',
'mp3_decoder',
'mp3_encoder',
'mp3_metadata',
'mp4_demuxer',
'mpeg_audio_decoder',
'ogg_demuxer',
'ogg_muxer',
'opus_decoder',
'opusfile_decoder',
'pcm_decoder',
'pcm_renderer_alsa',
'pcm_renderer_pa',
'spotify',
'vorbis_decoder',
'vp8_decoder',
'webm_demuxer',
'yuv_renderer'
],
value: [
'aac_decoder',
'chromecast_renderer',
'file_reader',
'file_writer',
'flac_decoder',
'http_renderer',
'http_source',
'inproc_reader',
'inproc_writer',
'mp3_decoder',
'mp3_encoder',
'mp3_metadata',
'mp4_demuxer',
'mpeg_audio_decoder',
'ogg_demuxer',
'ogg_muxer',
'opus_decoder',
'opusfile_decoder',
'pcm_decoder',
'pcm_renderer_alsa',
'pcm_renderer_pa',
'spotify',
'vorbis_decoder',
'vp8_decoder',
'webm_demuxer',
'yuv_renderer'
])