-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
79 lines (79 loc) · 1.7 KB
/
CMakePresets.json
File metadata and controls
79 lines (79 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "release",
"hidden": true,
"displayName": "Release Config",
"description": "Release config",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "debug",
"hidden": true,
"displayName": "Debug Config",
"description": "Debug config",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "profiling",
"hidden": true,
"displayName": "Profiling Config",
"description": "Profiling config",
"cacheVariables": {
"ENABLE_PROFILING": "ON",
"OPTIMIZATION_REPORT": "ON"
}
},
{
"name": "gcc",
"hidden": true,
"displayName": "gcc Config",
"description": "gcc config",
"cacheVariables": {
"CMAKE_C_COMPILER": "gcc",
"CMAKE_CXX_COMPILER": "g++"
}
},
{
"name": "clang",
"hidden": true,
"displayName": "clang Config",
"description": "clang config",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++"
}
},
{
"name": "clang-tidy",
"hidden": true,
"displayName": "Debug with Clang Tidy Config",
"description": "Debug with Clang Tidy Config",
"inherits": [
"clang"
],
"cacheVariables": {
"CLANG_TIDY": "ON"
}
},
{
"name": "asan",
"hidden": true,
"displayName": "Address sanitizer",
"description": "Address sanitizer",
"cacheVariables": {
"SANITIZER_ADDRESS": "ON"
}
}
]
}