diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-10-22 01:34:24 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-10-22 01:34:24 (GMT) |
commit | df487fc04e770917d2b81b536894d15826d0adc4 (patch) | |
tree | 303f358b4cd1886d5bffbbdfc82b14e1bf48a576 /Modules | |
parent | 7c06e91c9c308274797fcf0ff911a684dc697387 (diff) | |
download | CMake-df487fc04e770917d2b81b536894d15826d0adc4.zip CMake-df487fc04e770917d2b81b536894d15826d0adc4.tar.gz CMake-df487fc04e770917d2b81b536894d15826d0adc4.tar.bz2 |
fix for bug# 9751, add check for MSVC10
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindBoost.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 04f5d52..428be9e 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -569,6 +569,8 @@ ELSE (_boost_IN_CACHE) endif() elseif (MSVC90) SET (_boost_COMPILER "-vc90") + elseif (MSVC10) + SET (_boost_COMPILER "-vc100") elseif (MSVC80) SET (_boost_COMPILER "-vc80") elseif (MSVC71) |