X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FSConscript;h=71810974609df520ef5f3360007054d277a64606;hb=164fe477094d42463722584e527a02379ab5d985;hp=baa117a22748ff116e0499fd2270a1e13542c0b3;hpb=9f894848419a22a6a50e6c5ce253f436d164dcd3;p=senf.git diff --git a/Utils/SConscript b/Utils/SConscript index baa117a..7181097 100644 --- a/Utils/SConscript +++ b/Utils/SConscript @@ -1,11 +1,15 @@ # -*- python -*- Import('env') -import SENFSCons +import SENFSCons, glob, os.path ########################################################################### -sources = SENFSCons.GlobSources() -SENFSCons.StandardTargets(env) -SENFSCons.Lib(env, 'Utils', sources) +sources, tests, includes = SENFSCons.Glob(env, subdirs=[ 'impl' ]) + +env.Append(ALLOBJECTS = env.Object(sources)) +env.BoostUnitTest('test', tests) SENFSCons.Doxygen(env) +env.InstallSubdir('$INCLUDEINSTALLDIR', includes) + +SConscript(glob.glob("*/SConscript"))