-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathCMakePresets.json
More file actions
57 lines (57 loc) · 1.79 KB
/
CMakePresets.json
File metadata and controls
57 lines (57 loc) · 1.79 KB
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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 19,
"patch": 0
},
"configurePresets": [
{
"name": "indigo-debug",
"hidden": false,
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"BUILD_INDIGO": "ON",
"BUILD_INDIGO_WRAPPERS": "OFF",
"BUILD_INDIGO_UTILS": "ON",
"BUILD_BINGO": "OFF",
"BUILD_BINGO_ELASTIC": "OFF"
}
},
{
"name": "indigo-sanitize",
"hidden": false,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build_sanitizer",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CXX_FLAGS": "-fsanitize=undefined -fsanitize=address -fno-omit-frame-pointer -g -Wuninitialized -Wconditional-uninitialized",
"CMAKE_C_FLAGS": "-fsanitize=undefined -fsanitize=address -fno-omit-frame-pointer -g -Wuninitialized",
"CMAKE_EXE_LINKER_FLAGS": "-fsanitize=undefined -fsanitize=address",
"BUILD_INDIGO": "ON",
"BUILD_INDIGO_WRAPPERS": "OFF",
"BUILD_INDIGO_UTILS": "ON",
"BUILD_BINGO": "OFF",
"BUILD_BINGO_ELASTIC": "OFF"
}
}
],
"buildPresets": [
{
"name": "indigo-debug",
"configurePreset": "indigo-debug",
"targets": [
"all"
]
},
{
"name": "indigo-sanitize",
"configurePreset": "indigo-sanitize",
"targets": [
"all"
]
}
]
}