# -*- python -*- Import('env') import SENFSCons, glob ########################################################################### SConscript(glob.glob("*/SConscript")) SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh") if f not in ('all_includes.hh','UN.hh') and not f.endswith('.test.hh') ]) sources, tests, includes = SENFSCons.Glob(env) env.Append(ALLOBJECTS = env.Object(sources)) env.BoostUnitTest('test', tests) env.InstallSubdir('$INCLUDEINSTALLDIR', includes)