Skip to content

Commit 7cee847

Browse files
authored
[CONFIGURE] Add support for MSVC 2026 (reactos#8457)
Visual Studio 2026 is now generally available, read https://devblogs.microsoft.com/visualstudio/visual-studio-2026-is-here-faster-smarter-and-a-hit-with-early-adopters/ for more information. It seems MSVC 2026 still support setting the subsystem 5.1/5.2, although they remove the Windows 8.1 and earlier support for VCRuntime and STL in MSVC 2026.
1 parent 9690555 commit 7cee847

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

configure.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ if defined ROS_ARCH (
5656
cl 2>&1 | findstr /R /c:"19\.2.\." > NUL && set VS_VERSION=16
5757
cl 2>&1 | findstr /R /c:"19\.3.\." > NUL && set VS_VERSION=17
5858
cl 2>&1 | findstr /R /c:"19\.4.\." > NUL && set VS_VERSION=17
59+
cl 2>&1 | findstr /R /c:"19\.5.\." > NUL && set VS_VERSION=18
5960
if not defined VS_VERSION (
6061
echo Error: Visual Studio version too old ^(before 14 ^(2015^)^) or version detection failed.
6162
goto quit

0 commit comments

Comments
 (0)