-
Notifications
You must be signed in to change notification settings - Fork 25
/
meson.options
51 lines (51 loc) · 1.02 KB
/
meson.options
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
option(
'tests',
type: 'feature',
value: 'enabled',
description: 'Build tests'
)
option(
'bindings',
type: 'array',
description: 'Bindings to include',
choices: ['serial', 'astlpc', 'i2c'],
value: ['serial', 'astlpc', 'i2c'],
)
option(
'default_alloc',
type: 'feature',
description: 'Use libc malloc and free for heap memory',
)
option(
'stdio',
type: 'feature',
description: 'Support logging to stdio',
)
option(
'fileio',
type: 'feature',
description: 'Support interfaces based on file-descriptors',
)
option(
'syslog',
type: 'feature',
description: 'Support logging to syslog',
)
option(
'custom_alloc',
type: 'boolean',
value: false,
description: 'Use fixed application-provided allocators',
)
option(
'nolog',
type: 'boolean',
value: false,
description: 'Don\'t include any logging functionality',
)
option(
'control',
type: 'boolean',
value: true,
description: 'Include MCTP control protocol handler',
)