X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2FSConscript;h=199c62ddf4fd16d11cfff98b28d99a5b848c765e;hb=81ffa1c459b96dd44472bcef37e1e373934ee138;hp=a1b65aed66468fa0f29277680a827e51715e1ba0;hpb=ed51531b908d57d1e0a820678bfec41659a0ad4a;p=senf.git diff --git a/PPI/SConscript b/PPI/SConscript index a1b65ae..199c62d 100644 --- a/PPI/SConscript +++ b/PPI/SConscript @@ -1,10 +1,20 @@ Import('env') -import SENFSCons +import SENFSCons, glob ########################################################################### +SConscript(glob.glob("*/SConscript")) + +sources = SENFSCons.GlobSources(subdirs=[ 'detail' ]) + SENFSCons.StandardTargets(env) +SENFSCons.Lib(env, + library = 'PPI', + sources = sources, + LIBS = [ 'Scheduler', 'Packets', 'Socket', 'Utils' ]) + SENFSCons.Doxygen(env, extra_sources=[ env.Dia2Png('scenario.dia'), + env.Dia2Png('classes.dia'), ])