X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2FSConscript;h=de2d369b00e9c0550b5de909266cbfbe5499efcc;hb=fd3a0e8ac95d1158e9ea661ddf9187b67c70169f;hp=199c62ddf4fd16d11cfff98b28d99a5b848c765e;hpb=81ffa1c459b96dd44472bcef37e1e373934ee138;p=senf.git diff --git a/PPI/SConscript b/PPI/SConscript index 199c62d..de2d369 100644 --- a/PPI/SConscript +++ b/PPI/SConscript @@ -5,16 +5,16 @@ import SENFSCons, glob SConscript(glob.glob("*/SConscript")) -sources = SENFSCons.GlobSources(subdirs=[ 'detail' ]) +SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh") + if f not in ('all_includes.hh','PPI.hh') \ + and not f.endswith('.test.hh') ]) +sources, includes = SENFSCons.Glob(env, subdirs=[ 'detail' ]) SENFSCons.StandardTargets(env) - -SENFSCons.Lib(env, - library = 'PPI', - sources = sources, - LIBS = [ 'Scheduler', 'Packets', 'Socket', 'Utils' ]) - +SENFSCons.Lib(env, sources) SENFSCons.Doxygen(env, extra_sources=[ env.Dia2Png('scenario.dia'), env.Dia2Png('classes.dia'), + env.Dia2Png('ratestuffer.dia'), ]) +SENFSCons.InstallIncludeFiles(env, includes)