14 Apr
2009
14 Apr
'09
3:52 p.m.
Maróy Ákos
I'd suggest you to try to use single header variant of Boost.Test and thus avoid any linking issues.
hm, which would be...? this is my source code:
#include
#include
using namespace boost::unit_test;
test_suite * init_unit_test_suite(int, char ** const) { test_suite *ts = BOOST_TEST_SUITE("test_suite"); framework::master_test_suite().add(ts);
return 0; }
And remove any libs from link line. Gennadiy