Newer
Older
# -*- python -*-
Import('env')
import SENFSCons, glob
###########################################################################
SENFSCons.StandardTargets(env)
SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
g0dil
committed
if ( f not in ('all_includes.hh','Logger.hh','SenfLog.hh')
and not f.endswith('.test.hh') ) ])
objects = SENFSCons.Objects( env, sources = sources, LIBS = [ 'Utils' ] )
g0dil
committed
SENFSCons.InstallIncludeFiles(env, [ 'SenfLog.hh' ])
SENFSCons.Doxygen(env)
Return('objects')