-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmake-variants.yaml
86 lines (81 loc) · 1.9 KB
/
cmake-variants.yaml
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
77
78
79
80
81
82
83
84
85
86
buildType:
default: debug
choices:
debug:
short: Debug
long: Build with debug symbols
buildType: Debug
release:
short: Release
long: Optimized build with no debug symbols
buildType: Release
tidy:
default: NoClangTidy
choices:
NoClangTidy:
short: clang-tidy off
long: Don't run clang tidy checks during build time
settings:
CLANG_TIDY_CHECK: OFF
RunClangTidy:
short: clang-tidy on
long: Run clang-tidy checks during build phase of MDB
settings:
CLANG_TIDY_CHECK: ON
profiling:
default: WithProfiling
choices:
NoProfiling:
short: profile logging turned off
long: Don't enable profile logging framework
settings:
MDB_PROFILE_LOGGER: OFF
WithProfiling:
short: profile logging turned on
long: Enable profile logging framework
settings:
MDB_PROFILE_LOGGER: ON
dwarfstandard:
default: dwarf4
choices:
dwarf4:
short: DWARF4
long: Build test cases with dwarf4 only symbols
settings:
USE_DWARF5: OFF
dwarf5:
short: DWARF5
long: Build test cases with dwarf4 and dwarf5 symbols
settings:
USE_DWARF5: ON
tests:
default: buildtests
choices:
buildtests:
short: Build tests
long: Build tests to be used with test suite
settings:
BUILD_MDB_TESTS: ON
notests:
short: Don't build tests
long: Don't build tests to be used with test suite
settings:
BUILD_MDB_TESTS: OFF
linker:
default: lld
choices:
lld:
short: LLVM linker
long: Use the LLVM linker lld
settings:
CMAKE_LINKER_TYPE: LLD
gnu:
short: GNU linker
long: Use the GNU linker ld GOLD
settings:
CMAKE_LINKER_TYPE: LD
mold:
short: MOLD linker
long: Use the mold linker
settings:
CMAKE_LINKER_TYPE: MOLD