forked from mantidproject/mantid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
224 lines (224 loc) · 5.38 KB
/
CMakePresets.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
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
{
"version": 2,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "conda",
"description": "Inherited by all Conda-based, non-hidden presets",
"hidden": true,
"binaryDir": "${sourceDir}/build",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_PREFIX_PATH": "$env{CONDA_PREFIX}"
}
},
{
"name": "ci-default",
"description": "Inherited by all CI configurations",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"ENABLE_PRECOMMIT": "OFF",
"COLORED_COMPILER_OUTPUT": "OFF"
}
},
{
"name": "unix-debug",
"description": "Inherited by all Unix-like presets for debugging. Overrides Conda CXX flags for debugging",
"hidden": true,
"cacheVariables": {
"CMAKE_CXX_FLAGS_DEBUG": "-g -Og",
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "osx-default",
"description": "Inherited by all OSX configurations",
"hidden": true,
"cacheVariables": {
"CMAKE_FIND_FRAMEWORK": "LAST",
"USE_PYTHON_DYNAMIC_LIB": "OFF"
}
},
{
"name": "osx-64-ci",
"description": "Build options for a CI build on OSX",
"inherits": [
"osx-default",
"ci-default",
"conda"
]
},
{
"name": "linux-64-ci",
"description": "Build options for a CI build on Linux",
"inherits": [
"ci-default",
"conda"
],
"cacheVariables": {
"PROFILE_ALGORITHM_LINUX": "ON"
}
},
{
"name": "win-64-ci",
"description": "Build options for a CI build on windows",
"inherits": [
"ci-default",
"conda"
],
"generator": "Visual Studio 16 2019"
},
{
"name": "win-64-ci-ninja",
"description": "Build options for a CI build on windows with Ninja",
"inherits": [
"ci-default",
"conda"
],
"cacheVariables": {
"USE_PRECOMPILED_HEADERS": "OFF"
}
},
{
"name": "cppcheck-ci",
"description": "Build options for CppCheck CI build",
"inherits": [
"ci-default",
"conda"
],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CPPCHECK_GENERATE_XML": "TRUE"
}
},
{
"name": "doxygen-ci",
"description": "Build options for Doxygen CI build",
"inherits": [
"ci-default",
"conda"
],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"USE_DOT": "FALSE"
}
},
{
"name": "osx",
"description": "Default build options for a developer OSX build",
"inherits": [
"unix-debug",
"osx-default",
"conda"
]
},
{
"name": "linux",
"description": "Default build options for a developer Linux build",
"inherits": [
"unix-debug",
"conda"
],
"cacheVariables": {
"PROFILE_ALGORITHM_LINUX": "ON"
}
},
{
"name": "win-vs-2019",
"description": "Default build options for a developer Windows build using Visual Studio 2019",
"inherits": [
"conda"
],
"generator": "Visual Studio 16 2019"
},
{
"name": "win-vs",
"description": "Default build options for a developer Windows build using Visual Studio 2022",
"inherits": [
"conda"
],
"generator": "Visual Studio 17 2022",
"toolset": "v142"
},
{
"name": "win-ninja",
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"cacheRoot": "${sourceDir}/build"
}
},
"description": "Default build options for a developer Windows build using Visual Studio",
"inherits": [
"conda"
],
"cmakeExecutable": "cmake.exe",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "DebugWithRelRuntime",
"USE_PRECOMPILED_HEADERS": "OFF",
"CMAKE_MAKE_PROGRAM": "ninja.exe"
}
},
{
"name": "sanitiser-default",
"description": "Default build options for sanitiser builds",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "linux-64-ci-address-sanitiser",
"description": "Build options for address sanitizer build",
"inherits": [
"sanitiser-default",
"ci-default",
"conda"
],
"cacheVariables": {
"USE_SANITIZER": "Address"
}
},
{
"name": "linux-64-ci-ub-sanitiser",
"description": "Build options for UB sanitizer build",
"inherits": [
"sanitiser-default",
"ci-default",
"conda"
],
"cacheVariables": {
"USE_SANITIZER": "Undefined"
}
},
{
"name": "linux-64-ci-thread-sanitiser",
"description": "Build options for Thread sanitizer build",
"inherits": [
"sanitiser-default",
"ci-default",
"conda"
],
"cacheVariables": {
"USE_SANITIZER": "Thread"
}
},
{
"name": "linux-64-ci-coverage",
"description": "Build options for generating C++ coverage information",
"inherits": [
"unix-debug",
"ci-default",
"conda"
],
"cacheVariables": {
"COVERAGE": "OFF",
"TESTING_TIMEOUT": "1200"
}
}
]
}