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

Import('env')
import SENFSCons, glob

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

SConscript(glob.glob("*/SConscript"))

g0dil's avatar
g0dil committed
SENFSCons.AllIncludesHH(env, exclude=['DVB.hh'])
g0dil's avatar
g0dil committed

sources, tests, includes = SENFSCons.Glob(env)
g0dil's avatar
g0dil committed

env.Append(ALLOBJECTS = env.Object(sources))
env.BoostUnitTest('test', tests)
env.InstallSubdir('$INCLUDEINSTALLDIR', includes)