-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathCMakePresets.json
More file actions
410 lines (400 loc) · 21.9 KB
/
Copy pathCMakePresets.json
File metadata and controls
410 lines (400 loc) · 21.9 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
{
"version": 5,
"cmakeMinimumRequired": { "major": 3, "minor": 24, "patch": 0 },
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "base-debug",
"hidden": true,
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"RAC_BUILD_TESTS": "ON"
}
},
{
"name": "base-release",
"hidden": true,
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"RAC_BUILD_TESTS": "OFF"
}
},
{
"name": "macos-debug",
"displayName": "macOS — Debug + tests",
"inherits": "base-debug",
"cacheVariables": {
"RAC_BUILD_PLATFORM": "ON",
"RAC_BUILD_SHARED": "OFF",
"GGML_METAL": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Darwin" }
},
{
"name": "macos-release",
"displayName": "macOS — Release",
"inherits": "base-release",
"cacheVariables": {
"RAC_BUILD_PLATFORM": "ON",
"RAC_BUILD_SHARED": "OFF",
"GGML_METAL": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Darwin" }
},
{
"name": "linux-debug",
"displayName": "Linux — Debug + tests",
"inherits": "base-debug",
"cacheVariables": {
"RAC_BUILD_PLATFORM": "OFF",
"RAC_BUILD_SHARED": "ON",
"RAC_BUILD_PLUGIN_SMOKE": "ON"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Linux" }
},
{
"name": "linux-release",
"displayName": "Linux — Release",
"inherits": "base-release",
"cacheVariables": {
"RAC_BUILD_PLATFORM": "OFF",
"RAC_BUILD_SHARED": "ON",
"RAC_BUILD_PLUGIN_SMOKE": "ON"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Linux" }
},
{
"name": "linux-asan",
"displayName": "Linux — Debug + AddressSanitizer",
"inherits": "linux-debug",
"cacheVariables": {
"RAC_SANITIZER": "asan"
}
},
{
"name": "rcli-macos-release",
"displayName": "rcli — macOS arm64 Release (Metal)",
"inherits": "base-release",
"cacheVariables": {
"RAC_BUILD_CLI": "ON",
"RAC_DESKTOP_ADAPTER": "ON",
"RAC_BUILD_BACKENDS": "ON",
"RAC_BACKEND_LLAMACPP": "ON",
"RAC_BACKEND_MLX": "ON",
"RAC_BACKEND_SHERPA": "ON",
"RAC_BACKEND_ONNX": "ON",
"RAC_BACKEND_NEURT": "ON",
"RAC_RUNTIME_ONNXRT": "ON",
"RAC_RUNTIME_COREML": "ON",
"RAC_BACKEND_RAG": "ON",
"RAC_BUILD_SERVER": "ON",
"RAC_STATIC_PLUGINS": "ON",
"RAC_BUILD_SHARED": "OFF",
"RAC_BUILD_PLATFORM": "ON",
"RAC_INCLUDE_LOCAL_DEV_CONFIG": "OFF",
"GGML_METAL": "ON",
"CMAKE_OSX_ARCHITECTURES": "arm64",
"CMAKE_C_FLAGS": "-ffile-prefix-map=${sourceDir}=/runanywhere-sdks -fmacro-prefix-map=${sourceDir}=/runanywhere-sdks -fdebug-prefix-map=${sourceDir}=/runanywhere-sdks",
"CMAKE_CXX_FLAGS": "-ffile-prefix-map=${sourceDir}=/runanywhere-sdks -fmacro-prefix-map=${sourceDir}=/runanywhere-sdks -fdebug-prefix-map=${sourceDir}=/runanywhere-sdks",
"CMAKE_OBJC_FLAGS": "-ffile-prefix-map=${sourceDir}=/runanywhere-sdks -fmacro-prefix-map=${sourceDir}=/runanywhere-sdks -fdebug-prefix-map=${sourceDir}=/runanywhere-sdks",
"CMAKE_OBJCXX_FLAGS": "-ffile-prefix-map=${sourceDir}=/runanywhere-sdks -fmacro-prefix-map=${sourceDir}=/runanywhere-sdks -fdebug-prefix-map=${sourceDir}=/runanywhere-sdks"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Darwin" }
},
{
"name": "rcli-linux-release",
"displayName": "rcli — Linux x86_64 Release",
"inherits": "base-release",
"cacheVariables": {
"RAC_BUILD_CLI": "ON",
"RAC_DESKTOP_ADAPTER": "ON",
"RAC_BUILD_BACKENDS": "ON",
"RAC_BACKEND_LLAMACPP": "ON",
"RAC_BACKEND_SHERPA": "ON",
"RAC_BACKEND_ONNX": "ON",
"RAC_RUNTIME_ONNXRT": "ON",
"RAC_BACKEND_RAG": "ON",
"RAC_BUILD_SERVER": "ON",
"RAC_STATIC_PLUGINS": "ON",
"RAC_BUILD_SHARED": "OFF",
"RAC_BUILD_PLATFORM": "OFF",
"RAC_INCLUDE_LOCAL_DEV_CONFIG": "OFF",
"CMAKE_C_FLAGS": "-ffile-prefix-map=${sourceDir}=/runanywhere-sdks -fmacro-prefix-map=${sourceDir}=/runanywhere-sdks -fdebug-prefix-map=${sourceDir}=/runanywhere-sdks",
"CMAKE_CXX_FLAGS": "-ffile-prefix-map=${sourceDir}=/runanywhere-sdks -fmacro-prefix-map=${sourceDir}=/runanywhere-sdks -fdebug-prefix-map=${sourceDir}=/runanywhere-sdks"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Linux" }
},
{
"name": "rcli-windows-release",
"displayName": "rcli — Windows x86_64 Release",
"inherits": "base-release",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake",
"VCPKG_TARGET_TRIPLET": "x64-mingw-static",
"VCPKG_HOST_TRIPLET": "x64-mingw-static",
"RAC_BUILD_CLI": "ON",
"RAC_DESKTOP_ADAPTER": "ON",
"RAC_BUILD_BACKENDS": "ON",
"RAC_BACKEND_LLAMACPP": "ON",
"RAC_BACKEND_SHERPA": "ON",
"RAC_BACKEND_ONNX": "ON",
"RAC_BACKEND_MLX": "OFF",
"RAC_BACKEND_NEURT": "OFF",
"RAC_RUNTIME_ONNXRT": "ON",
"RAC_BACKEND_RAG": "OFF",
"RAC_BUILD_SERVER": "OFF",
"RAC_STATIC_PLUGINS": "ON",
"RAC_BUILD_SHARED": "OFF",
"RAC_BUILD_PLATFORM": "OFF",
"RAC_INCLUDE_LOCAL_DEV_CONFIG": "OFF",
"GGML_METAL": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Windows" }
},
{
"name": "android-arm64",
"displayName": "Android arm64-v8a (cross-compile)",
"inherits": "base-release",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "$env{ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake",
"ANDROID_ABI": "arm64-v8a",
"ANDROID_PLATFORM": "android-24",
"ANDROID_STL": "c++_shared",
"RAC_BUILD_JNI": "ON",
"RAC_BUILD_PLATFORM": "ON",
"RAC_BUILD_BACKENDS": "ON",
"RAC_BUILD_SHARED": "ON"
}
},
{
"name": "android-armv7",
"displayName": "Android armeabi-v7a (cross-compile)",
"inherits": "android-arm64",
"cacheVariables": { "ANDROID_ABI": "armeabi-v7a" }
},
{
"name": "android-x86_64",
"displayName": "Android x86_64 emulator (cross-compile)",
"inherits": "android-arm64",
"cacheVariables": { "ANDROID_ABI": "x86_64" }
},
{
"name": "ios-device",
"displayName": "iOS arm64 device (cross-compile)",
"generator": "Xcode",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_SYSTEM_NAME": "iOS",
"CMAKE_OSX_ARCHITECTURES": "arm64",
"CMAKE_OSX_DEPLOYMENT_TARGET": "17.5",
"CMAKE_OSX_SYSROOT": "iphoneos",
"CMAKE_BUILD_TYPE": "Release",
"RAC_STATIC_PLUGINS": "ON",
"RAC_BUILD_BACKENDS": "ON",
"RAC_BUILD_PLATFORM": "ON",
"RAC_BUILD_SHARED": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Darwin" }
},
{
"name": "ios-simulator",
"displayName": "iOS arm64 simulator (cross-compile)",
"inherits": "ios-device",
"cacheVariables": {
"CMAKE_OSX_ARCHITECTURES": "arm64",
"CMAKE_OSX_SYSROOT": "iphonesimulator"
}
},
{
"name": "wasm",
"displayName": "WebAssembly (Emscripten)",
"inherits": "base-release",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "$env{EMSDK}/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake",
"RAC_STATIC_PLUGINS": "ON",
"RAC_BUILD_BACKENDS": "ON",
"RAC_BUILD_PLATFORM": "OFF",
"RAC_BUILD_SHARED": "OFF",
"RAC_WASM_LLAMACPP": "ON"
}
},
{
"name": "windows-debug",
"displayName": "Windows x64 \u2014 Debug + tests (experimental, not release-tested)",
"inherits": "base-debug",
"generator": "Visual Studio 17 2022",
"architecture": { "value": "x64", "strategy": "set" },
"cacheVariables": {
"RAC_BUILD_PLATFORM": "OFF",
"RAC_BUILD_SHARED": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Windows" }
},
{
"name": "windows-release",
"displayName": "Windows x64 \u2014 Release (fat/static commons; experimental)",
"description": "Default Windows desktop Release. RAC_BUILD_SHARED=OFF so engines fold into static archives / the fat Electron .node. For the Option A thin addon + rac_commons.dll + plugin DLLs path, use the electron-windows preset instead.",
"inherits": "base-release",
"generator": "Visual Studio 17 2022",
"architecture": { "value": "x64", "strategy": "set" },
"cacheVariables": {
"RAC_BUILD_PLATFORM": "OFF",
"RAC_BUILD_SHARED": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Windows" }
},
{
"name": "electron-macos",
"displayName": "Electron \u2014 macOS thin addon (shared commons + dynamic plugins)",
"description": "Option A packaging: librac_commons.dylib + per-backend runanywhere_*.dylib + thin runanywhere_native.node. Thin mode is automatic when RAC_STATIC_PLUGINS=OFF; RAC_ELECTRON_THIN_ADDON is set explicitly for clarity. Fat Electron builds keep using macos-release + -DRAC_BUILD_ELECTRON_ADDON=ON.",
"inherits": "base-release",
"cacheVariables": {
"RAC_BUILD_PLATFORM": "ON",
"RAC_BUILD_SHARED": "ON",
"RAC_STATIC_PLUGINS": "OFF",
"RAC_BUILD_BACKENDS": "ON",
"RAC_BACKEND_LLAMACPP": "ON",
"RAC_BACKEND_ONNX": "ON",
"RAC_RUNTIME_ONNXRT": "ON",
"RAC_BACKEND_SHERPA": "ON",
"RAC_DESKTOP_ADAPTER": "ON",
"RAC_BUILD_ELECTRON_ADDON": "ON",
"RAC_ELECTRON_THIN_ADDON": "ON",
"GGML_METAL": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Darwin" }
},
{
"name": "electron-windows",
"displayName": "Electron \u2014 Windows x64 thin addon (shared commons + dynamic plugins)",
"description": "Option A packaging on MSVC: rac_commons.dll + runanywhere_*.dll + thin runanywhere_native.node. Requires a Windows host (or CI windows-2022 runner) — not cross-compilable from macOS. Pass -DRAC_NODE_DEV_DIR=<node-gyp cache> after `npx node-gyp install`. Sherpa needs the Windows Sherpa-ONNX prebuilt; CI may override -DRAC_BACKEND_SHERPA=OFF when that archive is absent. See bindings/electron/docs/DEVELOPMENT.md (DELAYLOAD notes).",
"inherits": "base-release",
"generator": "Visual Studio 17 2022",
"architecture": { "value": "x64", "strategy": "set" },
"cacheVariables": {
"RAC_BUILD_PLATFORM": "OFF",
"RAC_BUILD_SHARED": "ON",
"RAC_STATIC_PLUGINS": "OFF",
"RAC_BUILD_BACKENDS": "ON",
"RAC_BACKEND_LLAMACPP": "ON",
"RAC_BACKEND_ONNX": "ON",
"RAC_RUNTIME_ONNXRT": "ON",
"RAC_BACKEND_SHERPA": "ON",
"RAC_BACKEND_MLX": "OFF",
"RAC_BACKEND_NEURT": "OFF",
"RAC_DESKTOP_ADAPTER": "ON",
"RAC_BUILD_ELECTRON_ADDON": "ON",
"RAC_ELECTRON_THIN_ADDON": "ON",
"GGML_METAL": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Windows" }
},
{
"name": "electron-win-arm64",
"displayName": "Electron \u2014 Windows ARM64 thin addon (Hexagon NPU, QHexRT only)",
"description": "Option A packaging for Snapdragon X / X2 Elite: rac_commons.dll + runanywhere_qhexrt.dll + thin runanywhere_native.node, built ARM64-native. This is the NPU lane and it is mutually exclusive with electron-windows — QAIRT ships no QnnHtp*Stub for x86_64, so x64 can never reach the DSP, and the three CPU engines cannot compile for ARM64 (see the per-option comments). Requires an ARM64 Windows host and the ARM64 Native Tools prompt; MSVC's arm64_x64 cross toolset builds the OTHER lane, not this one. Pass, as electron-windows does, -DRAC_NODE_DEV_DIR=<node-gyp cache> and -DQHEXRT_ROOT=<engines/qhexrt/prebuilt/versions/<receipt>> (the global prebuilt/current symlink cannot name an Android and a Windows payload at once). RAC_DESKTOP_ADAPTER=ON needs libcurl and crypt32: crypt32 is a system library, but curl is not, so also pass -DCMAKE_TOOLCHAIN_FILE=<vcpkg>/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=arm64-windows-static after `vcpkg install curl:arm64-windows-static`. Without the adapter this lane has no HTTP transport at all — no model downloads, no telemetry, no auth.",
"inherits": "base-release",
"generator": "Visual Studio 17 2022",
"architecture": { "value": "ARM64", "strategy": "set" },
"cacheVariables": {
"RAC_BUILD_PLATFORM": "OFF",
"RAC_BUILD_SHARED": "ON",
"RAC_STATIC_PLUGINS": "OFF",
"RAC_BUILD_BACKENDS": "ON",
"RAC_BACKEND_QHEXRT": "ON",
"_comment_llamacpp": "ggml hard-errors 'MSVC is not supported for ARM, use clang' (ggml-cpu/CMakeLists.txt). Switching the toolset to ClangCL clears that but then Abseil fails instead (AbseilDll.cmake:745), so neither toolset builds it here yet.",
"RAC_BACKEND_LLAMACPP": "OFF",
"_comment_onnx": "cmake/FetchONNXRuntime.cmake selects its download by CMAKE_SIZEOF_VOID_P==8, which is TRUE on ARM64, so it would fetch the x64 ONNX Runtime and fail at link with LNK1112 (module machine type mismatch). There is no win-arm64 URL in it yet.",
"RAC_BACKEND_ONNX": "OFF",
"RAC_RUNTIME_ONNXRT": "OFF",
"RAC_BACKEND_SHERPA": "OFF",
"RAC_BACKEND_MLX": "OFF",
"RAC_BACKEND_NEURT": "OFF",
"_comment_rag": "Pulls protobuf + Abseil, which is the same Abseil that fails above.",
"RAC_BACKEND_RAG": "OFF",
"RAC_BUILD_SERVER": "OFF",
"RAC_DESKTOP_ADAPTER": "ON",
"RAC_BUILD_ELECTRON_ADDON": "ON",
"RAC_ELECTRON_THIN_ADDON": "ON",
"GGML_METAL": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Windows" }
},
{
"name": "electron-win-arm64-vs2026",
"displayName": "Electron \u2014 Windows ARM64 thin addon on the VS 2026 toolset",
"description": "Identical to electron-win-arm64 but pinned to Visual Studio 18 2026, for workstations that only have the newer toolset installed. Requires a CMake build that provides this generator (upstream CMake 4.2+). Note that this preset's binaryDir differs from electron-win-arm64's, so bindings/electron overlay tooling that hardcodes build/electron-win-arm64 needs RA_SDK_BUILD pointed here.",
"inherits": "electron-win-arm64",
"generator": "Visual Studio 18 2026"
},
{
"name": "windows-arm64-release",
"displayName": "Windows ARM64 \u2014 Release (Snapdragon X/X2 Elite, experimental)",
"description": "Native ARM64 MSVC build for Snapdragon X / X2 Elite. The Electron addon links arm64/node.lib and the QHexRT engine looks for a lib/win-arm64 prebuilt. Add -DRAC_BACKEND_QHEXRT=ON (+ -DQHEXRT_ROOT=<path>) to link the NPU engine. The four backends turned OFF below CANNOT build on Windows ARM64 today and each fails at CONFIGURE time, so leaving them on would make this preset unusable rather than merely feature-poor — see the per-option comments. Re-enable one only after its upstream blocker is fixed, and MEASURE it.",
"inherits": "base-release",
"generator": "Visual Studio 17 2022",
"architecture": { "value": "ARM64", "strategy": "set" },
"cacheVariables": {
"RAC_BUILD_PLATFORM": "OFF",
"RAC_BUILD_SHARED": "OFF",
"_comment_llamacpp": "ggml hard-errors 'MSVC is not supported for ARM, use clang' (ggml-cpu/CMakeLists.txt). Switching the toolset to ClangCL clears that but then Abseil fails instead (AbseilDll.cmake:745), so neither toolset builds it here yet.",
"RAC_BACKEND_LLAMACPP": "OFF",
"_comment_onnx": "cmake/FetchONNXRuntime.cmake selects its download by CMAKE_SIZEOF_VOID_P==8, which is TRUE on ARM64, so it would fetch the x64 ONNX Runtime and fail at link with LNK1112 (module machine type mismatch). There is no win-arm64 URL in it yet.",
"RAC_BACKEND_ONNX": "OFF",
"RAC_RUNTIME_ONNXRT": "OFF",
"RAC_BACKEND_SHERPA": "OFF",
"_comment_rag": "Pulls protobuf + Abseil, which is the same Abseil that fails above.",
"RAC_BACKEND_RAG": "OFF",
"RAC_BUILD_SERVER": "OFF"
},
"condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Windows" }
},
{
"name": "windows-arm64-release-vs2026",
"displayName": "Windows ARM64 \u2014 Release on the VS 2026 toolset",
"description": "Identical to windows-arm64-release but pinned to Visual Studio 18 2026, for workstations that only have the newer toolset installed. Requires a CMake build that provides this generator (upstream CMake 4.2+).",
"inherits": "windows-arm64-release",
"generator": "Visual Studio 18 2026"
}
],
"buildPresets": [
{ "name": "macos-debug", "configurePreset": "macos-debug" },
{ "name": "macos-release", "configurePreset": "macos-release" },
{ "name": "linux-debug", "configurePreset": "linux-debug" },
{ "name": "linux-release", "configurePreset": "linux-release" },
{ "name": "linux-asan", "configurePreset": "linux-asan" },
{ "name": "rcli-macos-release", "configurePreset": "rcli-macos-release" },
{ "name": "rcli-linux-release", "configurePreset": "rcli-linux-release" },
{ "name": "rcli-windows-release", "configurePreset": "rcli-windows-release" },
{ "name": "android-arm64", "configurePreset": "android-arm64" },
{ "name": "android-armv7", "configurePreset": "android-armv7" },
{ "name": "android-x86_64", "configurePreset": "android-x86_64" },
{ "name": "ios-device", "configurePreset": "ios-device" },
{ "name": "ios-simulator", "configurePreset": "ios-simulator" },
{ "name": "wasm", "configurePreset": "wasm" },
{ "name": "windows-debug", "configurePreset": "windows-debug" },
{ "name": "windows-release", "configurePreset": "windows-release" },
{ "name": "electron-macos", "configurePreset": "electron-macos" },
{ "name": "electron-windows", "configurePreset": "electron-windows", "configuration": "Release" },
{ "name": "electron-win-arm64", "configurePreset": "electron-win-arm64", "configuration": "Release" },
{ "name": "electron-win-arm64-vs2026", "configurePreset": "electron-win-arm64-vs2026", "configuration": "Release" },
{ "name": "windows-arm64-release", "configurePreset": "windows-arm64-release", "configuration": "Release" },
{ "name": "windows-arm64-release-vs2026", "configurePreset": "windows-arm64-release-vs2026", "configuration": "Release" }
],
"testPresets": [
{ "name": "macos-debug", "configurePreset": "macos-debug", "output": { "outputOnFailure": true } },
{ "name": "linux-debug", "configurePreset": "linux-debug", "output": { "outputOnFailure": true } },
{ "name": "linux-asan", "configurePreset": "linux-asan", "output": { "outputOnFailure": true } },
{ "name": "rcli-windows-release", "configurePreset": "rcli-windows-release", "output": { "outputOnFailure": true } }
]
}