X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Scheduler%2FSConscript;h=a91f80abdd956fa83d3879051db5959ac07fb490;hb=164fe477094d42463722584e527a02379ab5d985;hp=2909ad34a8243f9f7c942eb1441e83dd189c2fda;hpb=c5ab87643518405aa5171ed4602f7234873a4900;p=senf.git diff --git a/Scheduler/SConscript b/Scheduler/SConscript index 2909ad3..a91f80a 100644 --- a/Scheduler/SConscript +++ b/Scheduler/SConscript @@ -1,10 +1,13 @@ +# -*- python -*- + Import('env') -import SatSCons +import SENFSCons ########################################################################### -SatSCons.StandardTargets(env) -SatSCons.Lib(env, - library = 'Scheduler', - sources = SatSCons.GlobSources(), - LIBS = [ 'Socket', 'Utils' ]) +sources, tests, includes = SENFSCons.Glob(env) + +env.Append(ALLOBJECTS = env.Object(sources)) +env.BoostUnitTest('test', tests) +SENFSCons.Doxygen(env) +env.InstallSubdir('$INCLUDEINSTALLDIR', includes)