$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: aneubeck2004 (aneubeck_at_[hidden])
Date: 2004-09-15 06:37:24
Hi.
I have the following Jamfile, which defines librarys (dependent on the
platform...)
###########################
project libs
: requirements
<os>LINUX
: usage-requirements
<linkflags>-Wl,-R/usr/pack/gfxlibs-2.1-rs/i686-debian-linux3.0/lib
<library-path>/usr/pack/gfxlibs-2.1-rs/i686-debian-linux3.0/lib
<include>/usr/pack/gfxlibs-2.1-rs/include
<linkflags>-lz
;
lib zlib : : <name>z ;
lib pnglib : /libs//zlib : <name>png ;
###########################
In another Jamfile I want to use the pnglib and therefore implicitely
the zlib (which I thought should be possible, by adding /libs//zlib to
the dependencies of pnglib):
project preparation
: requirements <library>/libs//pnglib ;
Unfortunately this doesn't work :(
Any ideas what's wrong with my Jamfiles?
thx
Alexander