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
| { "version": 3, "configurePresets": [ { "name": "base", "hidden": true, "generator": "Ninja", "binaryDir": "${sourceDir}/out/build/${presetName}", "cacheVariables": { "CMAKE_EXPORT_COMPILE_COMMANDS": "YES" } }, { "name": "qt-static-release", "displayName": "Qt 6.2.4 MSVC Static Release", "inherits": "base",
"architecture": { "value": "x64", "strategy": "external" }, "toolset": { "value": "host=x64", "strategy": "external" }, "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", "CMAKE_C_COMPILER": "cl.exe", "CMAKE_CXX_COMPILER": "cl.exe", "CMAKE_PREFIX_PATH": "C:/D/Program/Qt/6.2.4/MSVC2022_x64_static_624_Release", "CMAKE_MSVC_RUNTIME_LIBRARY": "MultiThreaded" }, "vendor": { "jetbrains.com/clion": { "toolchain": "MSVC" } } }, { "name": "qt-mingw-dynamic", "displayName": "Qt 6.9.0 MinGW Dynamic", "inherits": "base", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", "CMAKE_PREFIX_PATH": "C:/D/Program/Qt/6.9.0/mingw_64", "CMAKE_C_COMPILER": "gcc.exe", "CMAKE_CXX_COMPILER": "g++.exe" }, "vendor": { "jetbrains.com/clion": { "toolchain": "Qt_Mingw" } } } ], "buildPresets": [ { "name": "qt-debug", "configurePreset": "qt-mingw-dynamic" }, { "name": "qt-release", "configurePreset": "qt-static-release" } ] }
|