-
Notifications
You must be signed in to change notification settings - Fork 318
Expand file tree
/
Copy pathCMakePresets.json
More file actions
64 lines (64 loc) · 1.73 KB
/
CMakePresets.json
File metadata and controls
64 lines (64 loc) · 1.73 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
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 31,
"patch": 0
},
"configurePresets": [
{
"name": "vs2022-x64",
"displayName": "Visual Studio 2022 x64",
"generator": "Visual Studio 17 2022",
"architecture": "x64",
"binaryDir": "${sourceDir}/build/vs2022-x64"
},
{
"name": "vs2022-arm64",
"displayName": "Visual Studio 2022 ARM64",
"generator": "Visual Studio 17 2022",
"architecture": "ARM64",
"binaryDir": "${sourceDir}/build/vs2022-arm64"
},
{
"name": "ninja-x64",
"displayName": "Ninja Multi-Config x64",
"generator": "Ninja Multi-Config",
"binaryDir": "D:/b/nx64",
"cacheVariables": {
"CMAKE_OBJECT_PATH_MAX": "1000"
}
},
{
"name": "ninja-arm64",
"displayName": "Ninja Multi-Config ARM64",
"generator": "Ninja Multi-Config",
"binaryDir": "D:/b/na64",
"cacheVariables": {
"CMAKE_OBJECT_PATH_MAX": "1000"
}
}
],
"buildPresets": [
{
"name": "vs2022-x64-debug",
"configurePreset": "vs2022-x64",
"configuration": "Debug"
},
{
"name": "vs2022-x64-release",
"configurePreset": "vs2022-x64",
"configuration": "Release"
},
{
"name": "ninja-x64-debug",
"configurePreset": "ninja-x64",
"configuration": "Debug"
},
{
"name": "ninja-x64-release",
"configurePreset": "ninja-x64",
"configuration": "Release"
}
]
}