|
72 | 72 | } |
73 | 73 | }, |
74 | 74 | { |
75 | | - "name": "linux-rel", |
76 | | - "displayName": "Linux Release", |
77 | | - "description": "Release build for Linux with Clang and Ninja", |
| 75 | + "name": "linux-x64-rel", |
| 76 | + "displayName": "Linux x64 Release", |
| 77 | + "description": "Release build for Linux x64 with Clang and Ninja", |
78 | 78 | "generator": "Ninja", |
79 | | - "binaryDir": "${sourceDir}/build/linux-rel", |
| 79 | + "binaryDir": "${sourceDir}/build/linux-x64-rel", |
80 | 80 | "cacheVariables": { |
81 | 81 | "CMAKE_BUILD_TYPE": "MinSizeRel", |
82 | 82 | "CMAKE_C_COMPILER": "clang", |
|
85 | 85 | } |
86 | 86 | }, |
87 | 87 | { |
88 | | - "name": "linux-dbg", |
89 | | - "displayName": "Linux Debug", |
90 | | - "description": "Debug build for Linux with Clang and Ninja", |
| 88 | + "name": "linux-x64-dbg", |
| 89 | + "displayName": "Linux x64 Debug", |
| 90 | + "description": "Debug build for Linux x64 with Clang and Ninja", |
91 | 91 | "generator": "Ninja", |
92 | | - "binaryDir": "${sourceDir}/build/linux-dbg", |
| 92 | + "binaryDir": "${sourceDir}/build/linux-x64-dbg", |
93 | 93 | "cacheVariables": { |
94 | 94 | "CMAKE_BUILD_TYPE": "Debug", |
95 | 95 | "CMAKE_C_COMPILER": "clang", |
|
98 | 98 | } |
99 | 99 | }, |
100 | 100 | { |
101 | | - "name": "linux-gcc-rel", |
102 | | - "displayName": "Linux GCC Release", |
103 | | - "description": "Release build for Linux with GCC and Ninja", |
| 101 | + "name": "linux-x64-gcc-rel", |
| 102 | + "displayName": "Linux x64 GCC Release", |
| 103 | + "description": "Release build for Linux x64 with GCC and Ninja", |
104 | 104 | "generator": "Ninja", |
105 | | - "binaryDir": "${sourceDir}/build/linux-gcc-rel", |
| 105 | + "binaryDir": "${sourceDir}/build/linux-x64-gcc-rel", |
106 | 106 | "cacheVariables": { |
107 | 107 | "CMAKE_BUILD_TYPE": "MinSizeRel", |
108 | 108 | "CMAKE_C_COMPILER": "gcc", |
|
111 | 111 | } |
112 | 112 | }, |
113 | 113 | { |
114 | | - "name": "linux-gcc-dbg", |
115 | | - "displayName": "Linux GCC Debug", |
116 | | - "description": "Debug build for Linux with GCC and Ninja", |
| 114 | + "name": "linux-x64-gcc-dbg", |
| 115 | + "displayName": "Linux x64 GCC Debug", |
| 116 | + "description": "Debug build for Linux x64 with GCC and Ninja", |
117 | 117 | "generator": "Ninja", |
118 | | - "binaryDir": "${sourceDir}/build/linux-gcc-dbg", |
| 118 | + "binaryDir": "${sourceDir}/build/linux-x64-gcc-dbg", |
| 119 | + "cacheVariables": { |
| 120 | + "CMAKE_BUILD_TYPE": "Debug", |
| 121 | + "CMAKE_C_COMPILER": "gcc", |
| 122 | + "CMAKE_CXX_COMPILER": "g++", |
| 123 | + "ENABLE_VULKAN": "ON" |
| 124 | + } |
| 125 | + }, |
| 126 | + { |
| 127 | + "name": "linux-arm64-rel", |
| 128 | + "displayName": "Linux ARM64 Release", |
| 129 | + "description": "Release build for Linux ARM64 with Clang and Ninja", |
| 130 | + "generator": "Ninja", |
| 131 | + "binaryDir": "${sourceDir}/build/linux-arm64-rel", |
| 132 | + "cacheVariables": { |
| 133 | + "CMAKE_BUILD_TYPE": "MinSizeRel", |
| 134 | + "CMAKE_C_COMPILER": "clang", |
| 135 | + "CMAKE_CXX_COMPILER": "clang++", |
| 136 | + "ENABLE_VULKAN": "ON" |
| 137 | + } |
| 138 | + }, |
| 139 | + { |
| 140 | + "name": "linux-arm64-dbg", |
| 141 | + "displayName": "Linux ARM64 Debug", |
| 142 | + "description": "Debug build for Linux ARM64 with Clang and Ninja", |
| 143 | + "generator": "Ninja", |
| 144 | + "binaryDir": "${sourceDir}/build/linux-arm64-dbg", |
| 145 | + "cacheVariables": { |
| 146 | + "CMAKE_BUILD_TYPE": "Debug", |
| 147 | + "CMAKE_C_COMPILER": "clang", |
| 148 | + "CMAKE_CXX_COMPILER": "clang++", |
| 149 | + "ENABLE_VULKAN": "ON" |
| 150 | + } |
| 151 | + }, |
| 152 | + { |
| 153 | + "name": "linux-arm64-gcc-rel", |
| 154 | + "displayName": "Linux ARM64 GCC Release", |
| 155 | + "description": "Release build for Linux ARM64 with GCC and Ninja", |
| 156 | + "generator": "Ninja", |
| 157 | + "binaryDir": "${sourceDir}/build/linux-arm64-gcc-rel", |
| 158 | + "cacheVariables": { |
| 159 | + "CMAKE_BUILD_TYPE": "MinSizeRel", |
| 160 | + "CMAKE_C_COMPILER": "gcc", |
| 161 | + "CMAKE_CXX_COMPILER": "g++", |
| 162 | + "ENABLE_VULKAN": "ON" |
| 163 | + } |
| 164 | + }, |
| 165 | + { |
| 166 | + "name": "linux-arm64-gcc-dbg", |
| 167 | + "displayName": "Linux ARM64 GCC Debug", |
| 168 | + "description": "Debug build for Linux ARM64 with GCC and Ninja", |
| 169 | + "generator": "Ninja", |
| 170 | + "binaryDir": "${sourceDir}/build/linux-arm64-gcc-dbg", |
119 | 171 | "cacheVariables": { |
120 | 172 | "CMAKE_BUILD_TYPE": "Debug", |
121 | 173 | "CMAKE_C_COMPILER": "gcc", |
|
182 | 234 | "jobs": 0 |
183 | 235 | }, |
184 | 236 | { |
185 | | - "name": "linux-rel", |
186 | | - "configurePreset": "linux-rel", |
| 237 | + "name": "linux-x64-rel", |
| 238 | + "configurePreset": "linux-x64-rel", |
| 239 | + "jobs": 0 |
| 240 | + }, |
| 241 | + { |
| 242 | + "name": "linux-x64-dbg", |
| 243 | + "configurePreset": "linux-x64-dbg", |
| 244 | + "jobs": 0 |
| 245 | + }, |
| 246 | + { |
| 247 | + "name": "linux-x64-gcc-rel", |
| 248 | + "configurePreset": "linux-x64-gcc-rel", |
| 249 | + "jobs": 0 |
| 250 | + }, |
| 251 | + { |
| 252 | + "name": "linux-x64-gcc-dbg", |
| 253 | + "configurePreset": "linux-x64-gcc-dbg", |
| 254 | + "jobs": 0 |
| 255 | + }, |
| 256 | + { |
| 257 | + "name": "linux-arm64-rel", |
| 258 | + "configurePreset": "linux-arm64-rel", |
187 | 259 | "jobs": 0 |
188 | 260 | }, |
189 | 261 | { |
190 | | - "name": "linux-dbg", |
191 | | - "configurePreset": "linux-dbg", |
| 262 | + "name": "linux-arm64-dbg", |
| 263 | + "configurePreset": "linux-arm64-dbg", |
192 | 264 | "jobs": 0 |
193 | 265 | }, |
194 | 266 | { |
195 | | - "name": "linux-gcc-rel", |
196 | | - "configurePreset": "linux-gcc-rel", |
| 267 | + "name": "linux-arm64-gcc-rel", |
| 268 | + "configurePreset": "linux-arm64-gcc-rel", |
197 | 269 | "jobs": 0 |
198 | 270 | }, |
199 | 271 | { |
200 | | - "name": "linux-gcc-dbg", |
201 | | - "configurePreset": "linux-gcc-dbg", |
| 272 | + "name": "linux-arm64-gcc-dbg", |
| 273 | + "configurePreset": "linux-arm64-gcc-dbg", |
202 | 274 | "jobs": 0 |
203 | 275 | }, |
204 | 276 | { |
|
0 commit comments