https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f6f1255cf7b9166645092130576a40ee44932227

commit f6f1255cf7b9166645092130576a40ee44932227
Author:     William Kent <[email protected]>
AuthorDate: Mon Nov 19 11:34:08 2018 -0500
Commit:     Hermès BÉLUSCA - MAÏTO <[email protected]>
CommitDate: Mon Nov 19 17:34:08 2018 +0100

    Add support for latest VS2017 (15.0) compiler (#1050)
    
    Latest VS 2017 CL.EXE compiler (version 19.16...) wasn't being correctly 
detected by the configure.cmd script.
---
 configure.cmd | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure.cmd b/configure.cmd
index d8f44af545..b105aca271 100755
--- a/configure.cmd
+++ b/configure.cmd
@@ -72,6 +72,7 @@ if defined ROS_ARCH (
     cl 2>&1 | find "19.13." > NUL && set VS_VERSION=15
     cl 2>&1 | find "19.14." > NUL && set VS_VERSION=15
     cl 2>&1 | find "19.15." > NUL && set VS_VERSION=15
+    cl 2>&1 | find "19.16." > NUL && set VS_VERSION=15
     if not defined VS_VERSION (
         echo Error: Visual Studio version too old ^(before 10 ^(2010^)^) or 
version detection failed.
         goto quit

Reply via email to