Move sourcecode into 'senf/' directory
[senf.git] / senf / Utils / SConscript
diff --git a/senf/Utils/SConscript b/senf/Utils/SConscript
new file mode 100644 (file)
index 0000000..7181097
--- /dev/null
@@ -0,0 +1,15 @@
+# -*- python -*-
+
+Import('env')
+import SENFSCons, glob, os.path
+
+###########################################################################
+
+sources, tests, includes = SENFSCons.Glob(env, subdirs=[ 'impl' ])
+
+env.Append(ALLOBJECTS = env.Object(sources))
+env.BoostUnitTest('test', tests)
+SENFSCons.Doxygen(env)
+env.InstallSubdir('$INCLUDEINSTALLDIR', includes)
+
+SConscript(glob.glob("*/SConscript"))