X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2F80211Bundle%2FSConscript;h=ee66d7c4098cce98024e5b7948e191cd1f3e6d4b;hb=6b43243d9b1a3b9720efdacc6f02364877ebe2aa;hp=66f97a4d1d8f9e0f29c928dad1410369dc0bd7df;hpb=2c5ee014ddfed45406e238029600346c99870229;p=senf.git diff --git a/Packets/80211Bundle/SConscript b/Packets/80211Bundle/SConscript index 66f97a4..ee66d7c 100644 --- a/Packets/80211Bundle/SConscript +++ b/Packets/80211Bundle/SConscript @@ -5,12 +5,13 @@ import SENFSCons, glob ########################################################################### -(sources, tests), includes = SENFSCons.Glob(env) +sources, tests, includes = SENFSCons.Glob(env) -SENFSCons.Object(env, target='80211Bundle', sources=sources, - testSources = tests + [ '80211Bundle.o' ]) -SENFSCons.Lib(env, sources=sources) +objects = env.Object(sources) +cobject = env.CombinedObject('80211Bundle', objects) +env.Append(ALLOBJECTS = objects) +env.BoostUnitTest('test', tests + cobject) -env.InstallSubdir(target = '$INCLUDEINSTALLDIR', source = includes) +env.InstallSubdir('$INCLUDEINSTALLDIR', includes) SConscript(glob.glob("*/SConscript"))