-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmake-variants.yaml
31 lines (31 loc) · 914 Bytes
/
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
buildType:
default: debug
choices:
debug:
short: Debug
long: Disable optimizations - include debug information.
buildType: Debug
release:
short: Release
long: Optimize for speed - exclude debug information.
buildType: Release
minsize:
short: MinSizeRel
long: Optimize for smallest binary size - exclude debug information.
buildType: MinSizeRel
reldeb:
short: RelWithDebInfo
long: Optimize for speed - include debug information.
buildType: RelWithDebInfo
coverage:
short: Coverage
long: Mostly disable optimizations - include debug information and coverage instrumentation.
buildType: Coverage
asan:
short: ASAN
long: Instrument with Address Sanitizer.
buildType: ASAN
ubsan:
short: UBSAN
long: Instrument with Undefined Behavior Sanitizer.
buildType: ASAN