Move Console from Scheduler into Utils
[senf.git] / Scheduler / SConscript
index 2909ad3..012f69e 100644 (file)
@@ -1,10 +1,16 @@
+# -*- python -*-
+
 Import('env')
-import SatSCons
+import SENFSCons
 
 ###########################################################################
 
-SatSCons.StandardTargets(env)
-SatSCons.Lib(env,
+sources = SENFSCons.GlobSources()
+SENFSCons.StandardTargets(env)
+
+SENFSCons.Lib(env,
              library = 'Scheduler',
-             sources = SatSCons.GlobSources(),
-             LIBS = [ 'Socket', 'Utils' ])
+             sources = sources,
+             LIBS = [ 'Logger', 'Scheduler', 'Console', 'Utils' ])
+
+SENFSCons.Doxygen(env)