|
Персональные инструменты |
|||
|
SconsDynamicallyAddTargetToExecutorМатериал из CustisWikiВерсия от 21:55, 8 октября 2009; StasFomin (обсуждение | вклад) (Новая: <graph> digraph G{ rankdir=LR ResultFile [fontsize=8 shape=box3d] MainFile->ResultFile; edge [style=dashed label="included in" fontsize=8] Generated1->MainFile Generated2->MainFile...)
I scan MainFile, and then I see inclusion of Generated1 file, I add something like this: cmd=env.Command(Generated1, Generator, RunMePlease) But actually I need cmd=env.Command([Generated1,Generated2,…,GeneratedN], Generator, RunMePlease) but I must add targets incrementally during MainFile scan… So the question is: How to dynamically add targets to Command? I try something like Generator.executor.targets.append(env.fs.Entry(GeneratedN)) but it seems not working… |
||