-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathmeson.options
More file actions
40 lines (40 loc) · 895 Bytes
/
meson.options
File metadata and controls
40 lines (40 loc) · 895 Bytes
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
option(
'abi',
type: 'array',
description: 'Constrain exposed symbol classes',
choices: ['deprecated', 'stable', 'testing'],
value: ['deprecated', 'stable', 'testing'],
)
option(
'abi-compliance-check',
type: 'boolean',
description: 'Detect public ABI/API changes',
value: false,
)
option(
'oem',
type: 'array',
description: 'Enable OEM PLDM extensions',
choices: ['ibm', 'meta'],
value: ['ibm', 'meta'],
)
option('tests', type: 'boolean', description: 'Build tests')
option(
'transport',
type: 'boolean',
description: 'Enable transport implementation',
)
option(
'tools',
type: 'array',
description: 'Tools to build with the library',
choices: ['pd'],
value: ['pd'],
)
option(
'bindings',
type: 'array',
description: 'Language bindings for libpldm',
choices: ['cpp'],
value: ['cpp'],
)