Add support for latest VS2017 (15.0) compiler (#1050)
authorWilliam Kent <wjk011@gmail.com>
Mon, 19 Nov 2018 16:34:08 +0000 (11:34 -0500)
committerHermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org>
Mon, 19 Nov 2018 16:34:08 +0000 (17:34 +0100)
Latest VS 2017 CL.EXE compiler (version 19.16...) wasn't being correctly detected by the configure.cmd script.

configure.cmd

index d8f44af..b105aca 100755 (executable)
@@ -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