$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Frank Birbacher (bloodymir.crap_at_[hidden])
Date: 2008-05-08 03:41:13
Hi!
Andreas Wattrodt schrieb:
> For further testing I was about to use the path A to install the executable
> somewhere else and wrote something like this in the same jamfile:
>
> install $(A)
> : hello
> ;
>
> But I cannot get the path A.
You don't need to specify the path yourself. Instead you need to specify
the destination:
install dist : #introduce new target name "dist"
hello
: <location>dist
;
Then do "bjam dist" to build "hello" and install it in the "dist"
subdirectory relative to the Jamfile.
Further information (like installing dependant libraries) can be found at
http://www.boost.org/boost-build2/doc/html/bbv2/tasks/installing.html
Regards,
Frank