PPI: Checkin of first compiling (yet not working) version
[senf.git] / PPI / SConscript
index a1b65ae..199c62d 100644 (file)
@@ -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'),
 ])