|
Boost-Build : |
From: Andre Genereux (andre_genereux01_at_[hidden])
Date: 2005-10-13 17:12:56
I'm building a very simple example project:
boostBuildExample---|
|Jamroot
|boost-build.jam
|
|---main---|
| |main.cxx
| |Jamfile
|
|---animals---|
|Cat.cxx
|Cat.h
|Dog.cxx
|Dog.h
|Jamfile
The Jamroot looks like this:
using gcc ;
project boostExample ;
build-project main ;
The animals Jamfile looks like this:
project animals ;
lib Animals
: Cat.cxx
Dog.cxx
: <include>.
<link>static
: : <include>.
;
The main Jamfile looks like this:
project main ;
exe main : main.cxx ../animals//Animals ;
When I build it, I'm getting the following warning:
warning: <pmain/bin/gcc/debug>main depends on itself
I have far more comlicated projects that work just fine. What am I
doing wrong on this one?
Thanks,
Andre
Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk