From 64dfccdf2657537f455cfb6cba8a5b3cb979d272 Mon Sep 17 00:00:00 2001 From: Fire Cube Date: Sun, 29 Jun 2025 22:38:54 +0200 Subject: [PATCH] restore presets before ositr commit (#3176) --- CMakePresets.json | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index 03af230c5..bd1aba36e 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -10,7 +10,7 @@ { "name": "x64-Clang-Debug", "displayName": "Clang x64 Debug", - "inherits": [ "x64-Windows-Base" ], + "inherits": ["x64-Clang-Base"], "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug" } @@ -18,12 +18,16 @@ { "name": "x64-Clang-Debug-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", "displayName": "Clang x64 Release", - "inherits": [ "x64-Windows-Base" ], + "inherits": ["x64-Clang-Base"], "cacheVariables": { "CMAKE_BUILD_TYPE": "Release" } @@ -31,12 +35,16 @@ { "name": "x64-Clang-Release-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", "displayName": "Clang x64 RelWithDebInfo", - "inherits": [ "x64-Windows-Base" ], + "inherits": ["x64-Clang-Base"], "cacheVariables": { "CMAKE_BUILD_TYPE": "RelWithDebInfo" } @@ -44,7 +52,11 @@ { "name": "x64-Clang-RelWithDebInfo-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" + } } ] -} +} \ No newline at end of file