summaryrefslogtreecommitdiffstats
path: root/Modules/FindBoost.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-03-23 12:44:11 (GMT)
committerKitware Robot <kwrobot@kitware.com>2017-03-23 12:44:22 (GMT)
commita1440504ffd18f155404b8bf44466172e9a8054d (patch)
tree5c9e3c86e0b65d42e2c70afeff5b97767625835e /Modules/FindBoost.cmake
parente978a2e5b135e25d6654570a6ed948bd5b0f33dc (diff)
parent9ab966a722bbe08615d6d5d4a82fd27aab64d315 (diff)
downloadCMake-a1440504ffd18f155404b8bf44466172e9a8054d.zip
CMake-a1440504ffd18f155404b8bf44466172e9a8054d.tar.gz
CMake-a1440504ffd18f155404b8bf44466172e9a8054d.tar.bz2
Merge topic 'avoid-MSVC-per-version-vars'
9ab966a7 FindRuby: Use `MSVC_VERSION` instead of `MSVC##` 69b9fde1 FindGTK2: Use `MSVC_VERSION` instead of `MSVC##` 3fe31822 FindBoost: Avoid mentioning discouraged `MSVC##`` variable Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !610
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r--Modules/FindBoost.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
index 2886381..a6f63f5 100644
--- a/Modules/FindBoost.cmake
+++ b/Modules/FindBoost.cmake
@@ -445,7 +445,7 @@ function(_Boost_GUESS_COMPILER_PREFIX _ret)
set(_boost_COMPILER "-vc71")
elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 13) # Good luck!
set(_boost_COMPILER "-vc7") # yes, this is correct
- else() # MSVC60 Good luck!
+ else() # VS 6.0 Good luck!
set(_boost_COMPILER "-vc6") # yes, this is correct
endif()
elseif (BORLAND)