$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Phillip Seaver (phil_at_[hidden])
Date: 2005-12-16 08:46:59
Renaud Lepere wrote:
> I would like to build a .dll and install it to a given location.
> I have a simple jamfile.
>
> lib a : a.cpp ;
> install ../bin : a ;
>
> But i have a litte problem, i would like to install the .dll in
> ../bin and the .lib in ../lib. I tried to look at stage.jam but
> i didn't understand. How is this possible ?
>
> Thanks
>
> Renaud
See if this works for you:
install a_bin : a : <location>../bin <install-type>EXE ;
install a_lib : a : <location>../lib <install-type>SHARED_LIB ;
Phillip