$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Konstantin Litvinenko (Konstantin.Litvinenko_at_[hidden])
Date: 2008-07-14 02:03:07
Hello, William!
You wrote on Sun, 13 Jul 2008 06:06:17 -0700 (PDT):
WM> I would like to know how to manage projects dependencies For instance i
WM> have one project (A) which requires another(B) to be build before it
WM> builds. As (B) is not a library but a python extension i can't use the
WM> typical /project//target so i would like to if there is another way to
WM> create dependencies between projects.
exe B : b.cpp ;
exe A : a.cpp : <dependency>B ;
This will build B before A.
With best regards, Konstantin Litvinenko.