Boost logo

Boost-Build :

From: Phillip Seaver (phil_at_[hidden])
Date: 2006-09-07 14:57:59


Kevin Wheatley wrote, on 9/6/2006 5:04 AM:
> Phillip Seaver wrote:
>
>> Any thoughts on this? One of my co-workers worked around the problem by
>> doing a modules.poke of the requirements in the DLL build.jam and a
>> modules.peek in the exe build.jam, so they're still only defined in one
>> place, but I'd really like for this to work correctly.
>>
>
> you could create a requirements project, with a set of requirements
> specified, then use an alias in that project as a fake target, you
> would then referencwe that in the appropriate places...
>
> project c-dll
> : requirements
> <link>shared
> : usage-requirements
> <include>c
> ;
>
> lib c : c/c.cpp b : : : <include>c ;
>
> # This allows us to pull a fake target to pick up the includes etc.
> for this project
> alias usage-requirements ;
>
> Then something like this...
>
> lib a : a/a.cpp : <link>static : : <include>a ;
> lib b : b/b.cpp a : <link>static : : <include>b ;
> use-project /c-dll : c-dll ;
> build-project c-dll ;
> exe d : d.cpp : <library>/c-dll//usage-requirements <link>static ;
>
> Kevin

That's a nicer work-around than the one we have now, but I think what I
was trying to do should work. d has <use>c, which (correctly) does not
make d link against c or b, but for some reason, it links against a.

Phillip


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