restore presets before ositr commit (#3176)

This commit is contained in:
Fire Cube 2025-06-29 22:38:54 +02:00 committed by GitHub
parent 6bf3c44b9c
commit 64dfccdf26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@
{ {
"name": "x64-Clang-Debug", "name": "x64-Clang-Debug",
"displayName": "Clang x64 Debug", "displayName": "Clang x64 Debug",
"inherits": [ "x64-Windows-Base" ], "inherits": ["x64-Clang-Base"],
"cacheVariables": { "cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug" "CMAKE_BUILD_TYPE": "Debug"
} }
@ -18,12 +18,16 @@
{ {
"name": "x64-Clang-Debug-Qt", "name": "x64-Clang-Debug-Qt",
"displayName": "Clang x64 Debug with Qt", "displayName": "Clang x64 Debug with Qt",
"inherits": [ "x64-Clang-Debug", "Qt-GUI" ] "inherits": ["x64-Clang-Base"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"ENABLE_QT_GUI": "ON"
}
}, },
{ {
"name": "x64-Clang-Release", "name": "x64-Clang-Release",
"displayName": "Clang x64 Release", "displayName": "Clang x64 Release",
"inherits": [ "x64-Windows-Base" ], "inherits": ["x64-Clang-Base"],
"cacheVariables": { "cacheVariables": {
"CMAKE_BUILD_TYPE": "Release" "CMAKE_BUILD_TYPE": "Release"
} }
@ -31,12 +35,16 @@
{ {
"name": "x64-Clang-Release-Qt", "name": "x64-Clang-Release-Qt",
"displayName": "Clang x64 Release with Qt", "displayName": "Clang x64 Release with Qt",
"inherits": [ "x64-Clang-Release", "Qt-GUI" ] "inherits": ["x64-Clang-Base"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"ENABLE_QT_GUI": "ON"
}
}, },
{ {
"name": "x64-Clang-RelWithDebInfo", "name": "x64-Clang-RelWithDebInfo",
"displayName": "Clang x64 RelWithDebInfo", "displayName": "Clang x64 RelWithDebInfo",
"inherits": [ "x64-Windows-Base" ], "inherits": ["x64-Clang-Base"],
"cacheVariables": { "cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo" "CMAKE_BUILD_TYPE": "RelWithDebInfo"
} }
@ -44,7 +52,11 @@
{ {
"name": "x64-Clang-RelWithDebInfo-Qt", "name": "x64-Clang-RelWithDebInfo-Qt",
"displayName": "Clang x64 RelWithDebInfo with Qt", "displayName": "Clang x64 RelWithDebInfo with Qt",
"inherits": [ "x64-Clang-RelWithDebInfo", "Qt-GUI" ] "inherits": ["x64-Clang-Base"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"ENABLE_QT_GUI": "ON"
}
} }
] ]
} }