https://git.reactos.org/?p=reactos.git;a=commitdiff;h=bf8dda4c9199f426b8f0a…
commit bf8dda4c9199f426b8f0aa1dd700ab93e4988d08
Author: William Kent <wjk011(a)gmail.com>
AuthorDate: Thu Sep 26 17:49:52 2019 -0400
Commit: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito(a)reactos.org>
CommitDate: Thu Sep 26 23:49:52 2019 +0200
[CONFIGURE] Add support for latest MSVC toolchain (#1940)
---
configure.cmd | 1 +
1 file changed, 1 insertion(+)
diff --git a/configure.cmd b/configure.cmd
index a6acd1c9a0c..dd50a1998d7 100755
--- a/configure.cmd
+++ b/configure.cmd
@@ -64,6 +64,7 @@ if defined ROS_ARCH (
cl 2>&1 | find "19.20." > NUL && set VS_VERSION=16
cl 2>&1 | find "19.21." > NUL && set VS_VERSION=16
cl 2>&1 | find "19.22." > NUL && set VS_VERSION=16
+ cl 2>&1 | find "19.23." > NUL && set VS_VERSION=16
if not defined VS_VERSION (
echo Error: Visual Studio version too old ^(before 10 ^(2010^)^) or version
detection failed.
goto quit