I'm upgrading an existing solution from VS2008 to VS2013. We use the boost 1_55 libraries. One project keeps trying to link against a vc110 version of boost; but when I build boost with the VS2013 command line compiler, I get vc120 boost libraries (of course).
My boost auto_link.hpp file has
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1800)
// vc11:
# define BOOST_LIB_TOOLSET "vc110"
# elif defined(BOOST_MSVC)
// vc12:
# define BOOST_LIB_TOOLSET "vc120"
in it, as recommended at Visual Studio 2013 (vs120) asks for wrong boost libraries; so what else can I try?