$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-build] staging subprojects
From: Johan Nilsson (r.johan.nilsson_at_[hidden])
Date: 2009-09-28 03:19:54
Jim Gallagher wrote:
> Johan,
>
> Thanks for your suggestion. It seems to work fine, but what about when
> one of the subprojects should not be staged? I've been experimenting
> with trying to define a "null" stage rule for those subprojects, but I
> am not having much luck.
Try:
alias stage ;
Alternatives (to avoid every Jamfile having to define this):
As you have the paths to the Jamfiles, you _could_ make a regex search for
e.g. "^\s*install\s+stage" (not sure if this exact regex works with the
Boost.Jam regex engine). Hackish, but workable. As a variation you could add
your own unique tags somewhere inside the Jamfiles to mark file as having a
stage target.
HTH / Johan