$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-12-14 09:52:24
> I have a project that contains 2 directories, and both of them contains
> sources needed to build my dll.
>
> How can I set my project source-location on both of theses directories ?
>
> source-location titi tutu ; <== Does not works :(
>
> any idea ?
The above indeed does not work? I can only suggest using explicit directory
names (probably together with the glob rule).
exe a : [ glob src1/*.cpp ] [ glob src2/*.cpp ] ;
- Volodya