X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FConsole%2FSConscript;h=dfcac7bb37b90b6ef875a80fadb310f036aba428;hb=164fe477094d42463722584e527a02379ab5d985;hp=31345a6dc19b01da02f7b0eaf65361880e6feff1;hpb=87b37eb193532cdb47b2440b6a0c8ee76c7b2f6d;p=senf.git diff --git a/Utils/Console/SConscript b/Utils/Console/SConscript index 31345a6..dfcac7b 100644 --- a/Utils/Console/SConscript +++ b/Utils/Console/SConscript @@ -5,9 +5,10 @@ import SENFSCons ########################################################################### -sources, includes = SENFSCons.Glob(env, exclude=['testServer.cc']) +sources, tests, includes = SENFSCons.Glob(env, exclude=['testServer.cc']) -SENFSCons.StandardTargets(env) -SENFSCons.Lib(env, sources) +env.Append(ALLOBJECTS = env.Object(sources)) +env.BoostUnitTest('test', tests) SENFSCons.Doxygen(env) -SENFSCons.InstallIncludeFiles(env, includes) +env.InstallSubdir('$INCLUDEINSTALLDIR', includes) +env.Program('testServer', ['testServer.cc'])