-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
83 lines (83 loc) · 2.08 KB
/
CMakePresets.json
File metadata and controls
83 lines (83 loc) · 2.08 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "windows",
"hidden": true,
"cacheVariables": {
"CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION_MAXIMUM": "10.0.22621.0",
"CMAKE_SYSTEM_VERSION": "10.0.19041.0"
}
},
{
"name": "windows-msvc",
"inherits": "windows",
"hidden": true,
"displayName": "Windows-only configuration",
"description": "This build is only available on Windows",
"generator": "Ninja Multi-Config",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "Windows.MSVC.toolchain.cmake",
"CMAKE_VS_VERSION_PRERELEASE": "ON",
"VS_EXPERIMENTAL_MODULE": "OFF",
"VS_USE_SPECTRE_MITIGATION_RUNTIME": "OFF"
},
"binaryDir": "${sourceDir}/build-cmake/"
},
{
"name": "windows-msvc-x64",
"inherits": "windows-msvc",
"displayName": "Configure for 'windows-msvc-x64'",
"cacheVariables": {
"CMAKE_SYSTEM_PROCESSOR": "x64"
}
},
{
"name": "windows-msvc-amd64",
"inherits": "windows-msvc",
"displayName": "Configure for 'windows-msvc-amd64'",
"cacheVariables": {
"CMAKE_SYSTEM_PROCESSOR": "AMD64"
}
},
{
"name": "windows-msvc-x86",
"inherits": "windows-msvc",
"displayName": "Configure for 'windows-msvc-x86'",
"cacheVariables": {
"CMAKE_SYSTEM_PROCESSOR": "x86"
}
},
{
"name": "windows-msvc-arm64",
"inherits": "windows-msvc",
"displayName": "Configure for 'windows-msvc-arm64'",
"cacheVariables": {
"CMAKE_SYSTEM_PROCESSOR": "arm64"
}
}
],
"buildPresets": [
{
"name": "windows-msvc-x64",
"configurePreset": "windows-msvc-x64"
},
{
"name": "windows-msvc-amd64",
"configurePreset": "windows-msvc-amd64"
},
{
"name": "windows-msvc-x86",
"configurePreset": "windows-msvc-x86"
},
{
"name": "windows-msvc-arm64",
"configurePreset": "windows-msvc-arm64"
}
]
}