summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-10-29 17:40:04 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-10-29 17:40:04 (GMT)
commit1f9affacdad90240fb1f3bd729eaa4c81bd34568 (patch)
tree8c731d2551238bc06b88aad36950ba2082ae8b48 /Modules
parentb5c75a8e88debd8b003441ee88e8a82fec68e03e (diff)
parent77be366c5841d08c4128ae83946a48093fdbe789 (diff)
downloadCMake-1f9affacdad90240fb1f3bd729eaa4c81bd34568.zip
CMake-1f9affacdad90240fb1f3bd729eaa4c81bd34568.tar.gz
CMake-1f9affacdad90240fb1f3bd729eaa4c81bd34568.tar.bz2
Merge topic 'intel-fortran-2016'
77be366c Intel: Recognize MSVC version for Intel Fortran 2016 (#15809)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/CMakeFortranCompilerId.F.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/CMakeFortranCompilerId.F.in b/Modules/CMakeFortranCompilerId.F.in
index 2533d3f..017af91 100644
--- a/Modules/CMakeFortranCompilerId.F.in
+++ b/Modules/CMakeFortranCompilerId.F.in
@@ -17,7 +17,9 @@
# if defined(_MSC_VER)
PRINT *, 'INFO:simulate[MSVC]'
-# if _MSC_VER >= 1800
+# if _MSC_VER >= 1900
+ PRINT *, 'INFO:simulate_version[019.00]'
+# elif _MSC_VER >= 1800
PRINT *, 'INFO:simulate_version[018.00]'
# elif _MSC_VER >= 1700
PRINT *, 'INFO:simulate_version[017.00]'