Intel: Recognize MSVC version for Intel Fortran 2016 (#15809)

This commit is contained in:
Brad King 2015-10-26 13:00:15 -04:00
parent 3187de20fd
commit 77be366c58
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]'