Can anyone help me ? I'm trying to add the testing facilities from boost library and I'm stuck. Let's suppose that i have a source file like this (the simplest one):
#define BOOST_TEST_MAIN #include BOOST_AUTO_TEST_CASE(test) { BOOST_CHECK(1 + 1 == 2); }
How is suppose to look the corespondent Jamfile ? Thank you !