X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FPackets%2F80221Bundle%2FSConscript;fp=Packets%2F80221Bundle%2FSConscript;h=f58e4ec4e5e441aecbc6d78379bc0012c97cbfb9;hb=601d1f509f5bb24df167a4dd5a20da67a0af9af8;hp=121b4910151df42389798584c7eee95709e3fec6;hpb=164fe477094d42463722584e527a02379ab5d985;p=senf.git diff --git a/Packets/80221Bundle/SConscript b/senf/Packets/80221Bundle/SConscript similarity index 63% rename from Packets/80221Bundle/SConscript rename to senf/Packets/80221Bundle/SConscript index 121b491..f58e4ec 100644 --- a/Packets/80221Bundle/SConscript +++ b/senf/Packets/80221Bundle/SConscript @@ -8,10 +8,13 @@ import SENFSCons, glob sources, tests, includes = SENFSCons.Glob(env) objects = env.Object(sources) -env.Install('$OBJINSTALLDIR', env.Default( env.CombinedObject('80221Bundle', objects) )) +cobject = env.CombinedObject('80221Bundle', objects) +env.Default(cobject) env.Append(ALLOBJECTS = objects) -env.BoostUnitTest('test', tests + ['80221Bundle.o']) +env.Append(PACKET_BUNDLES = cobject) +env.BoostUnitTest('test', tests + cobject) +env.Install('$OBJINSTALLDIR', cobject) env.InstallSubdir('$INCLUDEINSTALLDIR', includes) SConscript(glob.glob("*/SConscript"))