X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FSConscript;h=af32a01651765599595dcc255eb68363f6751b34;hb=6b43243d9b1a3b9720efdacc6f02364877ebe2aa;hp=bb4f89730792dc3e3624400893a14e1dc1cea6ab;hpb=2c5ee014ddfed45406e238029600346c99870229;p=senf.git diff --git a/Utils/Logger/SConscript b/Utils/Logger/SConscript index bb4f897..af32a01 100644 --- a/Utils/Logger/SConscript +++ b/Utils/Logger/SConscript @@ -9,9 +9,9 @@ SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh") if ( f not in ('all_includes.hh','Logger.hh','SenfLog.hh') and not f.endswith('.test.hh') ) ]) -sources, includes = SENFSCons.Glob(env) +sources, tests, includes = SENFSCons.Glob(env) -SENFSCons.Lib(env, sources) +env.Append(ALLOBJECTS = env.Object(sources)) +env.BoostUnitTest('test', tests) SENFSCons.Doxygen(env) - -env.InstallSubdir(target = '$INCLUDEINSTALLDIR', source = includes) +env.InstallSubdir('$INCLUDEINSTALLDIR', includes)