Correct naming of MSBuild CMake presets

You can build with MSVC without MSBuild
This commit is contained in:
ISSOtm
2026-04-15 00:31:20 +02:00
committed by Rangi
parent 2502d130eb
commit 59dd1fbbf8
+8 -8
View File
@@ -16,22 +16,22 @@
"errors": { "dev": true } "errors": { "dev": true }
}, },
{ {
"name": "develop-msvc32", "name": "develop-msbuild32",
"inherits": ["develop", "msvc32"] "inherits": ["develop", "msbuild32"]
}, },
{ {
"name": "develop-msvc64", "name": "develop-msbuild64",
"inherits": ["develop", "msvc64"] "inherits": ["develop", "msbuild64"]
}, },
{ {
"name": "msvc32", "name": "msbuild32",
"description": "Flags for building 32-bit executables with MSVC", "description": "Flags for building 32-bit executables with MSBuild",
"architecture": "Win32" "architecture": "Win32"
}, },
{ {
"name": "msvc64", "name": "msbuild64",
"description": "Flags for building 64-bit executables with MSVC", "description": "Flags for building 64-bit executables with MSBuild",
"architecture": "x64" "architecture": "x64"
}, },