$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Jeff Holle (jeff.holle_at_[hidden])
Date: 2004-02-03 15:42:25
I have a simple Jamfile in which I added a stage rule so the executable
is placed in my
./Install directory.
It is:
project-root ;
SEARCH on python.jam = $(BOOST_BUILD_PATH) ;
stage install : <exe>cppParser : <locate>. : release ;
exe cppParser
: # sources
cppParser.cpp
: # requirements
<include>/home/jholle/boost_CVS/boost
# library path required for linking to boost_python shared lib.
<library-path>$(BOOST_ROOT)/boost/build/bin-stage
:
release
;
While the stage rule does what I wanted it to, it also causes all
actions to be taken twice. Is this normal? Can I avoid it while still
copying the the actions to ./Install?