27 May
2007
27 May
'07
11:17 p.m.
John Maddock wrote:
It defaults to linking against a static library by default, to link to the dll version you will need to build your application with either of the following defined:
BOOST_FILESYSTEM_DYN_LINK: only Boost.Filesystem will be linked to the dll. BOOST_ALL_DYN_LINK: all boost libraries will link to the dll version.
Thanks John, BOOST_FILESYSTEM_DYN_LINK is just what I needed. These config settings definitely need a prominent mention in the filesystem and boost common docs. Rob