-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeson_options.txt
76 lines (66 loc) · 1.33 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
option(
'bugreport_url',
type: 'string',
value: 'https://github.com/lethalbit/clank/issues',
description: 'URL for bug report submissions'
)
option(
'disable_logging',
type: 'boolean',
value: false,
description: 'Disable all logging, even in debug mode (useful for better benchmarks)'
)
option(
'release_logging',
type: 'boolean',
value: false,
description: 'Enable trace logging even in release mode'
)
option(
'build_tests',
type: 'boolean',
value: true,
description: 'Build the library with tests'
)
option(
'build_benchmarks',
type: 'boolean',
value: true,
description: 'Build the benchmarks'
)
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/libclank/examples'
)
option(
'build_fuzzers',
type: 'boolean',
value: true,
description: 'Build fuzzing harness'
)
option(
'build_bindings',
type: 'boolean',
value: true,
description: 'Build the library with bindings'
)
option(
'bindings_python',
type: 'boolean',
value: true,
description: 'Build the python bindings (only if build_bindings is enabled)'
)
option(
'bindings_rust',
type: 'boolean',
value: true,
description: 'Build the rust bindings (only if build_bindings is enabled)'
)