-
Notifications
You must be signed in to change notification settings - Fork 13
/
meson_options.txt
47 lines (38 loc) · 1.05 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
option('gstreamer',
type : 'combo',
choices : ['1.0', '0.10', 'no'],
description : 'Enable gstreamer support')
option('lz4',
type : 'boolean',
value : true,
description: 'Enable lz4 compression support')
option('sasl',
type : 'boolean',
value : true,
description : 'Use cyrus SASL authentication')
option('celt051',
type : 'feature',
description: 'Enable celt051 audio codec')
option('opus',
type : 'feature',
description: 'Enable Opus audio codec')
option('smartcard',
type : 'boolean',
value : true,
description : 'Enable smartcard support')
option('alignment-checks',
type : 'boolean',
value : false,
description : 'Enable runtime checks for cast alignment')
option('extra-checks',
type : 'boolean',
value: false,
description : 'Enable extra checks on code')
option('statistics',
type : 'boolean',
value: false,
description : 'Build SPICE with statistic code enabled')
option('manual',
type : 'boolean',
value : true,
description : 'Build SPICE manual')