-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCMakePresets.json
More file actions
34 lines (34 loc) · 1.01 KB
/
Copy pathCMakePresets.json
File metadata and controls
34 lines (34 loc) · 1.01 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
{
"version": 3,
"configurePresets": [
{
"name": "windows",
"displayName": "Windows build with Microsoft Visual Studio 2022",
"generator": "Visual Studio 17 2022",
"toolset": "v143",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
}
],
"buildPresets": [
{
"name": "windows",
"displayName": "Windows build with Microsoft Visual Studio 2022",
"configurePreset": "windows",
"configuration": "Debug",
"nativeToolOptions": ["-m"],
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
}
]
}