diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-09-20 05:39:26 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-09-20 05:39:26 +0200 |
commit | bd522a3853951cf8ea4b0b9e2f225a8bdc38da04 (patch) | |
tree | a0d33b9fc532e66e0006d349ef0ec23e1114ef6e /cmake/macros | |
parent | 4e951f9d9b7d6da14fce3a47791139ccd5fa7bd3 (diff) |
Core: Fix build for msvc14
Diffstat (limited to 'cmake/macros')
-rw-r--r-- | cmake/macros/FindBoost.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/macros/FindBoost.cmake b/cmake/macros/FindBoost.cmake index 90bba26db70..ebd1c29598a 100644 --- a/cmake/macros/FindBoost.cmake +++ b/cmake/macros/FindBoost.cmake @@ -349,6 +349,8 @@ function(_Boost_GUESS_COMPILER_PREFIX _ret) else()
set (_boost_COMPILER "-il")
endif()
+ elseif (MSVC14)
+ set(_boost_COMPILER "-vc140")
elseif (MSVC12)
set(_boost_COMPILER "-vc120")
elseif (MSVC11)
|