From 2f1c6a7271a1fed84b0601b1cd58bcc663d191e5 Mon Sep 17 00:00:00 2001 From: Daniela Engert Date: Mon, 22 Jul 2013 11:16:19 +0200 Subject: [PATCH] Boost.Config add Visual Studio 2013 to autolink toolsets Signed-off-by: Daniela Engert --- boost/config/auto_link.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/boost/config/auto_link.hpp b/boost/config/auto_link.hpp index 334f196..f2cf8fb 100644 --- a/boost/config/auto_link.hpp +++ b/boost/config/auto_link.hpp @@ -151,11 +151,16 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y. // vc10: # define BOOST_LIB_TOOLSET "vc100" -# elif defined(BOOST_MSVC) +# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1800) // vc11: # define BOOST_LIB_TOOLSET "vc110" +# elif defined(BOOST_MSVC) + + // vc11: +# define BOOST_LIB_TOOLSET "vc120" + # elif defined(__BORLANDC__) // CBuilder 6: -- 1.8.3.msysgit.0