$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-11-03 08:30:43
On Wednesday 03 November 2004 16:30, Johannes Brunen wrote:
> I have tried the following, but it won't work
>
> project MyProject
>
> : requirements <define>X
> : requirements <define>Y
This should be
project MyProject
: requirements <define>X <define>Y
;
and should work. In what way it does not work for you?
> Another question:
> I have tried to build a project in which all the files have the extentsion
> *.CPP I was able to build this project only after changing the extension to
> lowercase *.cpp both in the jamfile as well as on the disk. Is this an
> error or is the uppercase somehow forbidden?
Simply Boost.Build does not know about CPP (in uppercase) file extension, so
has no idea what to do with such files. I did not think it's ever used.
- Volodya