-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
89 lines (86 loc) · 2.43 KB
/
CMakePresets.json
File metadata and controls
89 lines (86 loc) · 2.43 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
84
85
86
87
88
89
{
"version": 2,
"buildPresets": [
{
"name": "Win-Debug",
"configurePreset": "Win-Debug",
"configuration": "Debug"
},
{
"name": "Win-Release",
"configurePreset": "Win-Release",
"configuration": "Release"
},
{
"name": "Win-RelWithDebInfo",
"configurePreset": "Win-RelWithDebInfo",
"configuration": "RelWithDebInfo"
},
{
"name": "Win-MinSizeRel",
"configurePreset": "Win-MinSizeRel",
"configuration": "MinSizeRel"
}
],
"configurePresets": [
{
"name": "Win-Basic",
"hidden": true,
"generator": "Visual Studio 17 2022",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"VCPKG_TARGET_TRIPLET": "x64-windows-static"
}
},
{
"name": "Debug",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Release",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "RelWithDebInfo",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "MinSizeRel",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "MinSizeRel"
}
},
{
"name": "Win-Debug",
"displayName": "Win-Debug",
"inherits": [ "Win-Basic", "Debug" ]
},
{
"name": "Win-Release",
"displayName": "Win-Release",
"inherits": [ "Win-Basic", "Release" ]
},
{
"name": "Win-RelWithDebInfo",
"displayName": "Win-RelWithDebInfo",
"inherits": [ "Win-Basic", "RelWithDebInfo" ]
},
{
"name": "Win-MinSizeRel",
"displayName": "Win-MinSizeRel",
"inherits": [ "Win-Basic", "MinSizeRel" ]
}
]
}