Skip to content
Snippets Groups Projects
SConscript 353 B
Newer Older
# -*- python -*-

Import('env')
import SENFSCons

###########################################################################

sources, includes = SENFSCons.Glob(env, exclude=[ 'telnetServer.cc'])

SENFSCons.Lib(env, sources)
SENFSCons.Doxygen(env)
SENFSCons.InstallIncludeFiles(env, includes)
SENFSCons.Binary(env, "telnetServer", ['telnetServer.cc'])