Replace SENFSCons.InstallIncludeFiles with InstallSubdir builder calls
[senf.git] / Scheduler / SConscript
index fc9284e..6113f90 100644 (file)
@@ -1,10 +1,13 @@
+# -*- python -*-
+
 Import('env')
-import SatSCons
+import SENFSCons
 
 ###########################################################################
 
-SatSCons.StandardTargets(env)
-SatSCons.Lib(env,
-             library = 'Scheduler',
-             sources = SatSCons.GlobSources(),
-             LIBS = [ 'Utils' ])
+sources, includes = SENFSCons.Glob(env)
+
+SENFSCons.Lib(env, sources)
+SENFSCons.Doxygen(env)
+
+env.InstallSubdir(target = '$INCLUDEINSTALLDIR', source = includes)