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

Import('env')
import SENFSCons, glob

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

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

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

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

SENFSCons.Lib(env, sources)

env.InstallSubdir(target = '$INCLUDEINSTALLDIR', source = includes)