-
Notifications
You must be signed in to change notification settings - Fork 10
/
CMakePresets.json
45 lines (45 loc) · 1.25 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
{
"version": 5,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "NinjaMulti",
"displayName": "Ninja MultiConfig",
"description": "Ninja MultiConfig",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build"
},
{
"name": "MSVC 2022",
"displayName": "MSVC 2022",
"description": "MSVC 2022",
"generator": "Visual Studio 17 2022",
"binaryDir": "${sourceDir}/build",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "MSVC 2022 ARM",
"displayName": "MSVC 2022 ARM",
"description": "MSVC 2022 ARM",
"generator": "Visual Studio 17 2022",
"binaryDir": "${sourceDir}/build",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"architecture": {
"strategy": "set",
"value": "ARM64"
}
}
]
}