Scheduler: Remove unneeded Socket dependency
[senf.git] / Socket / Protocols / Raw / SConscript
index 4e77b00..d461a08 100644 (file)
@@ -5,15 +5,20 @@ import SENFSCons, glob
 
 ###########################################################################
 
+SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
+                               if f not in ('all_includes.hh','Raw.hh') and not f.endswith('.test.hh') ])
+
 sources = SENFSCons.GlobSources()
 
 allob = []
 
 allob.extend(
-    SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] ) )
+    SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Scheduler', 'Utils' ] ) )
 
 for sc in glob.glob("*/SConscript"):
     ob = SConscript(sc)
     if ob : allob.extend(ob)
 
+SENFSCons.InstallIncludeFiles(env, [ 'Raw.hh', 'all_includes.hh' ])
+
 Return('allob')