[Scons-users] Multiple Depends?

William Deegan bill at baddogconsulting.com
Sun Jan 19 19:41:52 EST 2014


Delbert,

On Jan 19, 2014, at 3:46 PM, delbert dev <delbertum at gmail.com> wrote:


> Assume that I needs to perform the following tasks/builders: A, B and C in that order. How do I setup that execution dependency tree in scons? It works fine when limited to two tasks e.g A -> B:

>

> http://www.scons.org/doc/production/HTML/scons-user/x1220.html

>

> But I have not found any documentation for the 2+ case.


env.Depends(B,A)
env.Depends(C,B)

Is one way.
Of course if SCons knows that A generates a file(s) needed by B, and that B generates a file(s) needed by C, then the Depends() is unnecessary.

-Bill
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://four.pairlist.net/pipermail/scons-users/attachments/20140119/84ddcd11/attachment.html


More information about the Scons-users mailing list