diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-19 14:56:54 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-19 14:56:54 (GMT) |
commit | 96c140e281a7fa1dd0995adec92ff6560df18d6f (patch) | |
tree | 11fb266a4e23479910de37ac62f872f3a33cbdd2 /Modules/Platform | |
parent | 37bff40d5da3ef03e80e7a7ea4a05099b05861f4 (diff) | |
download | CMake-96c140e281a7fa1dd0995adec92ff6560df18d6f.zip CMake-96c140e281a7fa1dd0995adec92ff6560df18d6f.tar.gz CMake-96c140e281a7fa1dd0995adec92ff6560df18d6f.tar.bz2 |
ENH: test for vs8 correctly
Diffstat (limited to 'Modules/Platform')
-rw-r--r-- | Modules/Platform/Windows-cl.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/Platform/Windows-cl.cmake b/Modules/Platform/Windows-cl.cmake index 9bb8bdd..1ff3233 100644 --- a/Modules/Platform/Windows-cl.cmake +++ b/Modules/Platform/Windows-cl.cmake @@ -120,6 +120,10 @@ IF(CMAKE_GENERATOR MATCHES "NMake Makefiles") SET(MSVC80 1) SET(CMAKE_COMPILER_2005 1) ENDIF("${compilerVersion}" EQUAL 1400) + IF("${compilerVersion}" EQUAL 1400) + SET(MSVC80 1) + SET(CMAKE_COMPILER_2005 1) + ENDIF("${compilerVersion}" EQUAL 1400) IF("${compilerVersion}" GREATER 1400) SET(MSVC80 1) SET(CMAKE_COMPILER_2005 1) |