summaryrefslogtreecommitdiffstats
path: root/Modules/FindBoost.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-03-22 15:35:29 (GMT)
committerBrad King <brad.king@kitware.com>2017-03-23 12:40:34 (GMT)
commit3fe3182247fa56fa031c74ea499059102c2743de (patch)
tree34a27c4b76d17d597b7c8f713f8a063d40b1ba7b /Modules/FindBoost.cmake
parente1adec32b8325fb731da084e99acd6070f5e39bf (diff)
downloadCMake-3fe3182247fa56fa031c74ea499059102c2743de.zip
CMake-3fe3182247fa56fa031c74ea499059102c2743de.tar.gz
CMake-3fe3182247fa56fa031c74ea499059102c2743de.tar.bz2
FindBoost: Avoid mentioning discouraged `MSVC##`` variable
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 e795aad..7348512 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)