Move sourcecode into 'senf/' directory
[senf.git] / senf / Utils / Termlib / SConscript
diff --git a/senf/Utils/Termlib/SConscript b/senf/Utils/Termlib/SConscript
new file mode 100644 (file)
index 0000000..9d1978a
--- /dev/null
@@ -0,0 +1,14 @@
+# -*- python -*-
+
+Import('env')
+import SENFSCons
+
+###########################################################################
+
+sources, tests, includes = SENFSCons.Glob(env, exclude=[ 'telnetServer.cc'])
+
+env.Append(ALLOBJECTS = env.Object(sources))
+env.BoostUnitTest('test', tests)
+SENFSCons.Doxygen(env)
+env.InstallSubdir('$INCLUDEINSTALLDIR', includes)
+env.Program('telnetServer', ['telnetServer.cc'])