-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmake-variants.json
32 lines (32 loc) · 927 Bytes
/
cmake-variants.json
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
{
"buildType": {
"default": "debug",
"choices": {
"debug": {
"short": "Debug",
"long": "Emit debug information",
"buildType": "DEBUG"
},
"release": {
"short": "Release",
"long": "Optimize generated code",
"buildType": "RELEASE"
},
"asan": {
"short": "Asan",
"long": "Instrument with Address Sanitizer",
"buildType": "ASAN"
},
"ubsan": {
"short": "UBsan",
"long": "Instrument with Undefined Behaviour Sanitizer",
"buildType": "UBSAN"
},
"tsan": {
"short": "Tsan",
"long": "Instrument with Thread Sanitizer",
"buildType": "TSAN"
}
}
}
}