Skip to content
Snippets Groups Projects
SConscript 656 B
Newer Older
g0dil's avatar
g0dil committed
# -*- python -*-

sbund's avatar
sbund committed
Import('env')
import SENFSCons, glob
sbund's avatar
sbund committed

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

SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
                               if 'defined(HH_Packets__decls_)' in file(f).read() ])
g0dil's avatar
g0dil committed
SENFSCons.StandardTargets(env)
SENFSCons.Lib(env,
              library = 'Packets',
              sources = SENFSCons.GlobSources(),
              LIBS = [ 'Socket', 'Utils' ])
g0dil's avatar
g0dil committed
SENFSCons.Doxygen(env, extra_sources = [
    env.Dia2Png("structure.dia")

SConscript(glob.glob("*/SConscript"))
g0dil's avatar
g0dil committed
SENFSCons.InstallIncludeFiles(env, [ 'parse_fixed_setup.hh' , 'parse_setup.hh' ])