From 80460497a91bcc42e3b2a7dc315bca81e4431f67 Mon Sep 17 00:00:00 2001 From: Chad Condon Date: Thu, 9 Jul 2026 20:45:16 -0700 Subject: [PATCH] Let ClangCL preset auto-detect the Visual Studio generator The hardcoded "Visual Studio 17 2022" generator broke when windows-latest moved to windows-2025, which ships VS 18. Dropping the explicit generator lets CMake pick whatever VS version is installed, matching the behaviour of the MSVC preset. --- CMakePresets.json | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakePresets.json b/CMakePresets.json index 645695d86..dff83dbbd 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -57,7 +57,6 @@ { "name": "ClangCL", "inherits": ["MSVC"], - "generator": "Visual Studio 17 2022", "toolset": "ClangCL" }, {