-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
34 lines (34 loc) · 1.44 KB
/
Copy pathCMakePresets.json
File metadata and controls
34 lines (34 loc) · 1.44 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": 4,
"cmakeMinimumRequired": { "major": 3, "minor": 23, "patch": 0 },
"configurePresets": [
{
"name": "windows-base",
"hidden": true,
"description": "Windows-only presets. The Visual Studio generator is resolved from the host default.",
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Windows" }
},
{
"name": "default",
"inherits": "windows-base",
"displayName": "Default (MSVC, x64)",
"description": "MSVC toolset, 64-bit. The default build on Windows. Configures into ./build/msvc-x64.",
"binaryDir": "${sourceDir}/build/msvc-x64",
"architecture": "x64"
},
{
"name": "msvc-x86",
"inherits": "windows-base",
"displayName": "MSVC (x86, 32-bit)",
"description": "MSVC toolset, 32-bit. Configures into ./build/msvc-x86.",
"binaryDir": "${sourceDir}/build/msvc-x86",
"architecture": "Win32"
}
],
"buildPresets": [
{ "name": "debug", "displayName": "MSVC x64 Debug", "configurePreset": "default", "configuration": "Debug" },
{ "name": "release", "displayName": "MSVC x64 Release", "configurePreset": "default", "configuration": "Release" },
{ "name": "x86-debug", "displayName": "MSVC x86 Debug", "configurePreset": "msvc-x86", "configuration": "Debug" },
{ "name": "x86-release", "displayName": "MSVC x86 Release", "configurePreset": "msvc-x86", "configuration": "Release" }
]
}