{ "version": 6, "configurePresets": [ { "name": "windows-base", "description": "Target Windows with the Visual Studio development environment.", "hidden": true, "generator": "Visual Studio 17 2022", "binaryDir": "${sourceDir}/msvc.build/${presetName}", "installDir": "${sourceDir}/msvc.install/${presetName}", "cacheVariables": { "CMAKE_C_COMPILER": "cl.exe", "CMAKE_CXX_COMPILER": "cl.exe", "CMAKE_WARN_DEPRECATED": "FALSE", "CMAKE_PRESET_NAME" : "${presetName}" }, "condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Windows" } }, { "name": "x64-debug", "displayName": "x64 Debug", "description": "Target Windows (64-bit) with the Visual Studio development environment. (Debug)", "inherits": "windows-base", "architecture": { "value": "x64", "strategy": "external" }, "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", "MUSE_COMPILE_BUILD_64": "ON" } }, { "name": "x64-MinSizeRel", "displayName": "x64 Release", "description": "Target Windows (64-bit) with the Visual Studio development environment. (MinSizeRel)", "inherits": "x64-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "MinSizeRel" } }, { "name": "x64-Release", "displayName": "x64 Release", "description": "Target Windows (64-bit) with the Visual Studio development environment. (Release)", "inherits": "x64-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release" } }, { "name": "x64-RelWithDebInfo", "displayName": "x64 RelWithDebInfo", "description": "Target Windows (64-bit) with the Visual Studio development environment. (RelWithDebInfo)", "inherits": "x64-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "RelWithDebInfo" } }, { "name": "x86-debug", "displayName": "x86 Debug", "description": "Target Windows (32-bit) with the Visual Studio development environment. (Debug)", "inherits": "windows-base", "architecture": { "value": "x86", "strategy": "external" }, "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", "MUSE_COMPILE_BUILD_64": "OFF" } }, { "name": "x86-MinSizeRel", "displayName": "x86 Release", "description": "Target Windows (32-bit) with the Visual Studio development environment. (MinSizeRel)", "inherits": "x86-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "MinSizeRel" } }, { "name": "x86-Release", "displayName": "x86 RelWithDebInfo", "description": "Target Windows (32-bit) with the Visual Studio development environment. (RelWithDebInfo)", "inherits": "x86-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "RelWithDebInfo" } }, { "name": "x86-RelWithDebInfo", "displayName": "x86 RelWithDebInfo", "description": "Target Windows (32-bit) with the Visual Studio development environment. (RelWithDebInfo)", "inherits": "x86-debug", "cacheVariables": { "CMAKE_BUILD_TYPE": "RelWithDebInfo" } } ] }