-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
62 lines (54 loc) · 1.06 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
option(
'bugreport_url',
type: 'string',
value: 'https://github.com/lethalbit/clank/issues',
description: 'URL for bug report submissions'
)
option(
'build_collectors',
type: 'boolean',
value: true,
description: 'Build the builtin sawmill collectors'
)
option(
'collectors',
type: 'array',
choices: ['file', 'journald', 'log'],
description: 'Sawmill collectors to build'
)
option(
'build_tests',
type: 'boolean',
value: true,
description: 'Build the library with tests'
)
option(
'build_examples',
type: 'boolean',
value: true,
description: 'Build the library with examples'
)
option(
'install_examples',
type: 'boolean',
value: true,
description: 'Install example sources into $PREFIX/share/sawmill/examples'
)
option(
'build_compiler_plugins',
type: 'boolean',
value: true,
description: 'Build compiler plugins for sawmill instrumentation attribute support'
)
option(
'plugin_gcc',
type: 'boolean',
value: true,
description: 'Build GCC plugin'
)
option(
'plugin_clang',
type: 'boolean',
value: true,
description: 'Build Clang plugin'
)