$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Motonari Ito (motonarii_at_[hidden])
Date: 2008-05-13 21:24:28
Hi,
I want to specify install location through command line parameter. It
sounds simple - how can I do it?
Let's say I have a Jamfile:
-----------
exe aaa : [ glob *.cpp ] ;
install dist : aaa ;
-----------
And I want to change the target location through command line -
something like;
% bjam install-dir=foo
So that aaa.exe is copied to foo/aaa.exe.
Thanks in advance.