summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: c5fe31dcd9a0c392eb16cfda7199ae63283f69ed (plain)
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
option('gstreamer',
    type : 'combo',
    choices : ['1.0', '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('opus',
    type : 'feature',
    description: 'Enable Opus audio codec')

option('smartcard',
    type : 'feature',
    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')

option('instrumentation',
    type : 'combo',
    value : 'no',
    choices : ['recorder', 'agent', 'no'],
    description: 'Enable instrumentation')

option('tests',
    type : 'boolean',
    value : true,
    description : 'Build the test binaries')