-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
205 lines (205 loc) · 7.02 KB
/
CMakePresets.json
File metadata and controls
205 lines (205 loc) · 7.02 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"hidden": false,
"name": "ninja",
"displayName": "Default config",
"description": "Default build using Ninja generator.",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/standard",
"cacheVariables": {
"CMAKE_CXX_STANDARD": "20",
"CMAKE_CXX_STANDARD_REQUIRED": "ON",
"CMAKE_CXX_EXTENSIONS": "OFF",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"hidden": true,
"name": "github",
"displayName": "GitHub config",
"description": "Default build for GitHub.",
"cacheVariables": {
"CMAKE_CXX_STANDARD": "20",
"CMAKE_CXX_STANDARD_REQUIRED": "ON",
"CMAKE_CXX_EXTENSIONS": "OFF",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"hidden": true,
"name": "gh-release",
"displayName": "GitHub Release",
"description": "Default GitHub Release build options.",
"inherits": "github",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"hidden": true,
"name": "gh-debug",
"displayName": "GitHub Debug",
"description": "Default GitHub Debug build options.",
"inherits": "github",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"hidden": true,
"name": "release",
"displayName": "Release",
"description": "Default Release build options.",
"inherits": "ninja",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"hidden": true,
"name": "debug",
"displayName": "Debug",
"description": "Default Debug build options.",
"inherits": "ninja",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"hidden": true,
"name": "gcc",
"displayName": "GCC compiler",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "g++"
}
},
{
"hidden": true,
"name": "clang",
"displayName": "Clang compiler",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "clang++"
}
},
{
"hidden": true,
"name": "gcc-clang-release",
"displayName": "GCC-Clang Release",
"description": "GCC-Clang release options.",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "-O3 -DNDEBUG -Wno-unused-command-line-argument -pthread"
}
},
{
"name": "gh-ubuntu-release",
"displayName": "GitHub Ubuntu Release",
"description": "GitHub Ubuntu release options.",
"inherits": ["gh-release", "gcc-clang-release"],
"binaryDir": "${sourceDir}/build/release/gh-ubuntu"
},
{
"name": "gcc-release",
"displayName": "GCC Release",
"description": "GCC release options.",
"inherits": ["gcc", "release", "gcc-clang-release"],
"binaryDir": "${sourceDir}/build/release/gcc"
},
{
"name": "clang-release",
"displayName": "Clang Release",
"description": "Clang release options.",
"inherits" : ["clang", "release", "gcc-clang-release"],
"binaryDir": "${sourceDir}/build/release/clang"
},
{
"hidden": true,
"name": "gcc-clang-debug",
"displayName": "GCC-Clang Debug",
"description": "GCC-Clang Debug options",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "-O0 -ggdb -Werror -Wshadow -Wextra -Wall -pedantic-errors -pthread"
}
},
{
"name": "gcc-debug",
"displayName": "GCC Debug",
"description": "GCC debug options.",
"inherits": ["gcc", "debug", "gcc-clang-debug"],
"binaryDir": "${sourceDir}/build/debug/gcc"
},
{
"name": "clang-debug",
"displayName": "Clang Debug",
"description": "Clang debug options.",
"inherits": ["clang", "debug", "gcc-clang-debug"],
"binaryDir": "${sourceDir}/build/debug/clang"
},
{
"name": "gcc-coverage",
"displayName": "GCC Coverage",
"description": "GCC coverage options.",
"inherits": ["gcc", "debug"],
"binaryDir": "${sourceDir}/build/debug/gcc-coverage",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "-O0 -g -coverage"
}
},
{
"name": "gh-coverage",
"displayName": "GitHub Coverage",
"description": "GitHub coverage options.",
"inherits": ["gcc", "github"],
"binaryDir": "${sourceDir}/build/debug/gh-coverage",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "-O0 -g -coverage"
}
},
{
"name": "gcc-thread",
"displayName": "Thread Sanitizer",
"description": "GCC thread sanitizer debug options.",
"inherits": ["gcc", "debug"],
"binaryDir": "${sourceDir}/build/debug/gcc-thread",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "-O0 -ggdb -Werror -Wshadow -Wextra -Wall -pedantic-errors -fsanitize=thread -pthread"
}
},
{
"name": "gcc-address",
"displayName": "GCC Address Sanitizer",
"description": "GCC address sanitizer debug options.",
"inherits": ["clang", "debug"],
"binaryDir": "${sourceDir}/build/debug/gcc-address",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "-O0 -ggdb -Werror -Wshadow -Wextra -Wall -pedantic-errors -fsanitize=address -fno-omit-frame-pointer"
}
},
{
"name": "gh-windows-release",
"displayName": "GitHub Windows Release",
"description": "GitHub Windows release options.",
"inherits": "gh-release",
"binaryDir": "${sourceDir}/build/release/gh-windows",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "/O2 /DNDEBUG"
}
},
{
"name": "gh-windows-debug",
"displayName": "GitHub Windows Debug",
"description": "GitHub Windows debug options.",
"inherits": "gh-debug",
"binaryDir": "${sourceDir}/build/debug/gh-windows",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "/O0 /W4"
}
}
]
}