We use bjam
to build the boost
libs with the following parameters
bjam --prefix=.\vs2012\x86\static --includedir=.\include --build-dir=.\build\vs2012\x86 --layout=system --build-type=minimal --without-mpi --without-python toolset=msvc-11.0 variant=release threading=multi link=static runtime-link=shared define=_BIND_TO_CURRENT_VCLIBS_VERSION address-model=32 install
So the lib names looks like libboost_unit_test_framework.lib
. But when build the project I get fatal error LNK1104: cannot open file 'libboost_unit_test_framework-vc110-mt-1_53.lib'
Well, I tried almost every solution for the linking issue LNK1104 e.g. suggested here, but nothing helps. Do you have any ideas what is going wrong? Here my test code
#define BOOST_TEST_MODULE MyClass test
#include <boost/test/unit_test.hpp>
#include "myclass.h"
BOOST_AUTO_TEST_CASE(Calc_Test)
{
MyClass* c = new MyClass();
BOOST_CHECK(c);
}