forked from seoklab/nurikit
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcmake-variants.json
52 lines (52 loc) · 1.33 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"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": {
"buildType": "Debug",
"long": "Coverage build.",
"short": "Coverage",
"settings": {
"NURI_TEST_COVERAGE": true
}
},
"sanitizers": {
"buildType": "RelWithDebInfo",
"long": "Sanitizers build.",
"short": "Sanitizers",
"settings": {
"NURI_ENABLE_SANITIZERS": true
}
},
"fuzzer": {
"buildType": "RelWithDebInfo",
"long": "Fuzzing build.",
"short": "Fuzz",
"settings": {
"NURI_ENABLE_SANITIZERS": true,
"NURI_BUILD_FUZZING": true
}
}
}
}
}