$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Fabien Chêne (fabien.chene_at_[hidden])
Date: 2007-03-14 17:32:45
Hi,
I'm trying to install generated sources (hpp file and cpp file).
for exemple, using bison.jam, I would like to copy generated files in
other directories.
I would like foo.hpp to be copied in ./include, foo.cpp to be copied
in ./src, and foo.yy not copied anywhere.
I also want libtoto to be installed in ./lib
I try something like that :
----------------
import bison ;
lib toto
:
foo.yy
:
<location>include
;
install dist : toto
:
#<install-dependencies>on <install-type>HPP <install-type>CPP
# ^ doesn't help
<location>lib
-----------------
Unfortunately, foo.cpp and foo.hpp are copied in the same directory.
How can copy them in different directories ?
Thanks.
-- Fab