14 Jan
2014
14 Jan
'14
4:01 a.m.
AMDG On 01/13/2014 04:18 PM, Eric Niebler wrote:
I'm trying to write a jamfile in an external project that uses boost. The jamfile should invoke the wave tool to preprocess some code as a build action. I have this:
actions do_wave { $(>[2]) -o- --config-file wave.cfg $(>[1]) }
W = /boost/libs/wave/tool/build//wave ;
Either you need to give the path to the wave project: W = $(BOOST_ROOT)/path/to/wave//wave ; or you need to declare this project-id somewhere: use-project /boost/libs/wave/tool/build : $(BOOST_ROOT)/path/to/wave ; Alternately, the wave Jamfile can be modified to give itself an id: project /boost/libs/wave/tool/build ; In Christ, Steven Watanabe