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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
{
"version": 6,
"configurePresets": [
{
"name": "base",
"generator": "Ninja",
"architecture": {
"strategy": "external",
"value": "x64"
},
"hidden": true
},
{
"name": "base/ensure-cl-compiler",
"cacheVariables": {
"CMAKE_C_COMPILER": "cl",
"CMAKE_CXX_COMPILER": "cl"
},
"hidden": true
},
{
"name": "base/vcpkg",
"toolchainFile": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"hidden": true
},
{
"name": "base/release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
},
"hidden": true
},
{
"name": "base/debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
"hidden": true
},
{
"name": "base/relWithDebInfo",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
},
"hidden": true
},
{
"name": "base/linuxCcache",
"cacheVariables": {
"CMAKE_C_COMPILER_LAUNCHER": "ccache",
"CMAKE_CXX_COMPILER_LAUNCHER": "ccache"
},
"hidden": true
},
{
"name": "base/gccCompatCacheVar",
"cacheVariables": {
"GCCCOMPAT_CXX_COMPILER_FOR_MSVC": "$env{GCCCOMPAT_CXX_COMPILER_FOR_MSVC}"
},
"hidden": true
},
{
"name": "base/buildBaseWithVcpkg",
"inherits": [
"base",
"base/vcpkg"
],
"hidden": true
},
{
"name": "base/windows-only",
"hidden": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "base/linux-only",
"hidden": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "base/allow_version_override_from_env",
"hidden": true,
"cacheVariables": {
"ASY_VERSION_OVERRIDE": "$env{ASY_VERSION_OVERRIDE}"
}
},
{
"name": "base/ctan",
"hidden": true,
"cacheVariables": {
"CTAN_BUILD": "true"
}
},
{
"name": "base/compact-zero-mode",
"hidden": true,
"cacheVariables": {
"ENABLE_COMPACT_ZERO_BUILD": "true"
}
}
],
"buildPresets": [
{
"name": "build-base/windows-only",
"hidden": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "build-base/linux-only",
"hidden": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
}
]
}
|