
"David Abrahams" <dave@boost-consulting.com> wrote in message news:871wn12teb.fsf@pereiro.luannocracy.com...
"Gennadiy Rozental" <gennadiy.rozental@thomson.com> writes:
Which is the default? If I just compile against the Boost.Test headers will it work, or do I need to set some #define?
There is no default. You could use either of them. It all depends on what header you are including
Test module with #include <boost/test/unit_test.hpp>
Will need an offline library
The same test module but with #include <boost/test/included/unit_test.hpp>
won't need an offline library.
Hmm, okay. I'd have done that with a preprocessor switch so when people decide to start using the separate binary they don't have to change their source files... but it's your party.
Hmm, It does make sense. I will do this for next release. Gennadiy