$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Chris Drexler (CKolumbus_at_[hidden])
Date: 2003-08-26 04:51:16
On Sat, Aug 23, 2003 at 10:15:44PM -0400, David Abrahams wrote:
>
> Chris Drexler <CKolumbus_at_[hidden]> writes:
> > - I already know from this list that "include-only" libraries are
> > not supported right now. The line
> >
> > alias boost : : <include>$(BOOST) ;
> >
> > hasn't been removed just to demonstrate the final idea.
> I don't know if it means anything, but in my flailing about, adding
> <dependency>@/boost
> as a requirement seemed to work. Believe it or not, though, I don't
> really understand BBv2, so I may be totally off base.
Sorry, the 'alias' line supposed to be a 'lib' line, like
lib boost
:
:
:
: <include>$(BOOST)
;
But as I read in another thread, include-only libs are not currently supported
in a standard way.
It's more important to me why I can't put the following lines
lib log4cpp
:
: <file>$(LOG4CPP)/msvc6/log4cpp/Release/log4cpp.lib <variant>release
:
: <library>winsock <library>advapi
;
lib log4cpp
:
: <file>$(LOG4CPP)/msvc6/log4cpp/Debug/log4cpp.lib
<variant>debug
:
: <library>winsock <library>advapi
;
into my main Jamfile (the one which resides in the root of my project)
and how to add dependecies on this lib to a target.
Best Regards,
Chris