Files
MaaAssistantArknights/tools/ResourceUpdater/CMakePresets.json
soundofautumn 3652fc4bea build: Adopt CMake presets for CI and add clangd/VSCode integration (#15595)
* feat: clangd support

* feat: 完善CMakePresets

* docs: 更新cmake命令

* fix: smoke test run

* docs: 更新vscode开发文档

* feat: 添加执行MaaWpf到cmake中

* feat: 支持全部的presets

* chore: 重新安排顺序

* chore: add some comment

* chore: add more comments

* feat: 简化res-update-game

* chore: 移除多余build

* chore: 统一x64和arm64

* chore: 修正重复忽略.vscode

* feat: vscode cmaketool乱码

* docs: 添加提示
2026-02-06 23:05:41 +08:00

26 lines
813 B
JSON

{
"version": 10,
"cmakeMinimumRequired": { "major": 3, "minor": 28, "patch": 0 },
"configurePresets": [
{
"name": "res-updater-macos-arm64",
"displayName": "ResourceUpdater macOS arm64 Release",
"$comment": ["see .github/workflows/res-update-game.yml"],
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"MAADEPS_TRIPLET": "maa-arm64-osx",
"WITH_HASH_VERSION": "ON"
}
}
],
"buildPresets": [
{
"name": "res-updater-macos-arm64",
"displayName": "Build ResourceUpdater macOS arm64",
"configurePreset": "res-updater-macos-arm64"
}
]
}