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

Import('env')
import SENFSCons, glob

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

g0dil's avatar
g0dil committed
SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
                               if f not in ('all_includes.hh','DVB.hh') and not f.endswith('.test.hh') ])

sources = SENFSCons.GlobSources()

allob = []

allob.extend(
    SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Scheduler', 'Utils' ] ) )

for sc in glob.glob("*/SConscript"):
    ob = SConscript(sc)
    if ob : allob.extend(ob)

g0dil's avatar
g0dil committed
SENFSCons.InstallIncludeFiles(env, [ 'DVB.hh', 'all_includes.hh' ])