mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-15 17:30:27 +08:00
* build: 添加新的可在linux系统上使用的cmake预设 * chore: 将devcontainer中的部分cmake配置移除 * chore: devcontainer中使用kitware的apt源以安装最新版本cmake
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"version": 3,
|
|
"cmakeMinimumRequired": {
|
|
"major": 4,
|
|
"minor": 2,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "windows",
|
|
"displayName": "Windows (Visual Studio 18 2026)",
|
|
"generator": "Visual Studio 18 2026",
|
|
"binaryDir": "${sourceDir}/build",
|
|
"cacheVariables": {
|
|
"BUILD_WPF_GUI": "ON",
|
|
"BUILD_DEBUG_DEMO": "ON"
|
|
},
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Windows"
|
|
}
|
|
},
|
|
{
|
|
"name": "linux",
|
|
"displayName": "Linux x64 (Unix Makefiles)",
|
|
"generator": "Unix Makefiles",
|
|
"binaryDir": "${sourceDir}/build",
|
|
"cacheVariables": {
|
|
"BUILD_DEBUG_DEMO": "ON",
|
|
"CMAKE_TOOLCHAIN_FILE": "src/MaaUtils/MaaDeps/cmake/maa-x64-linux-toolchain.cmake"
|
|
},
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Linux"
|
|
}
|
|
}
|
|
]
|
|
}
|