-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakePresets.json
More file actions
251 lines (251 loc) · 9.3 KB
/
CMakePresets.json
File metadata and controls
251 lines (251 loc) · 9.3 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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"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"
}
},
{
"hidden": true,
"name": "gcc-clang-hardened-release",
"displayName": "GCC-Clang Hardended Release",
"description": "GCC-Clang release with security hardened options.",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "-O3 -DNDEBUG -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-clash-protection -fstack-protector-strong -fPIE -pie -fno-delete-null-pointer-checks -fno-strict-overflow -fno-strict-aliasing -Wno-unknown-warning-option -Wno-unused-command-line-argument"
}
},
{
"name": "gh-ubuntu-release",
"displayName": "GitHub Ubuntu Release",
"description": "GitHub Ubuntu release options.",
"inherits": ["gh-release", "gcc-clang-hardened-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": "gcc-hard-release",
"displayName": "GCC Release Hardened",
"description": "GCC release with hardening.",
"inherits": ["gcc", "release", "gcc-clang-hardened-release"],
"binaryDir": "${sourceDir}/build/hard/release/gcc"
},
{
"name": "clang-hard-release",
"displayName": "Clang Release Hardened",
"description": "Clang release with hardening.",
"inherits": ["clang", "release", "gcc-clang-hardened-release"],
"binaryDir": "${sourceDir}/build/hard/release/clang"
},
{
"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"
}
},
{
"hidden": true,
"name": "gcc-clang-hardened-debug",
"displayName": "GCC-Clang Hardened Debug",
"description": "GCC-Clang Debug with Hardening options.",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "-O0 -ggdb -Werror -Wshadow -Wextra -Wconversion -Wsign-conversion -Wtrampolines -Wimplicit-fallthrough -Wall -pedantic-errors -Wformat=2 -fstack-clash-protection -fstack-protector-strong -fPIE -pie -Wno-unknown-warning-option -Wno-unused-command-line-argument"
}
},
{
"name": "gcc-debug",
"displayName": "GCC Debug",
"description": "GCC debug options.",
"inherits": ["gcc", "debug", "gcc-clang-debug"],
"binaryDir": "${sourceDir}/build/debug/gcc"
},
{
"name": "gcc-hard-debug",
"displayName": "GCC Hardened Debug",
"description": "GCC debug with hardening options.",
"inherits": ["gcc", "debug", "gcc-clang-hardened-debug"],
"binaryDir": "${sourceDir}/build/hard/debug/gcc"
},
{
"name": "clang-hard-debug",
"displayName": "Clang Hardened Debug",
"description": "Clang debug with hardening options.",
"inherits": ["clang", "debug", "gcc-clang-hardened-debug"],
"binaryDir": "${sourceDir}/build/hard/debug/clang"
},
{
"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"
}
}
]
}