$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2004-02-14 06:29:48
> LINK : fatal error LNK1104: cannot open file
> "libboost_filesystem-vc6-mt-gd-1_31.lib"
That's the name of the library that bjam would have built for you
(multithreading, debug, static library), if you want to link to your own dll
then define:
BOOST_ALL_NO_LIB : turns off auto-linking.
BOOST_ALL_DYN_LIB : turns on dll export/import support (this one needs to be
defined both when you build and when you use the lib if you want to link to
it as a dll rather than static lib).
Full docs are in http://www.boost.org/libs/config/config.htm#user_settable
John.