Skip to content
Snippets Groups Projects
SConscript 405 B
Newer Older
# -*- 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)
g0dil's avatar
g0dil committed
env.Program('telnetServer', ['telnetServer.cc'])