$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Alexey (Alexey.Trenikhin_at_[hidden])
Date: 2006-04-05 22:18:06
I have project with following structure:
/root
/subsystem1
std.cpp
/subsystem2
std.cpp
main.cpp
Jamfile
project-root.jam
How can I describe such structure in Jamfile? Obvious way:
exe hello : main.cpp subsystem1/std.cpp subsystem2/std.cpp ;
- does not work due to
"error: Duplicate name of actual target: <pbin\msvc\debug>std.obj"
Alexey