Merge topic 'intel-fortran-2016'

77be366c Intel: Recognize MSVC version for Intel Fortran 2016 (#15809)
This commit is contained in:
Brad King 2015-10-29 13:40:04 -04:00 committed by CMake Topic Stage
commit 1f9affacda
1 changed files with 3 additions and 1 deletions

View File

@ -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]'