X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FSConscript;h=ab682dd05b1f572cb1eba7be7b86fc6d26c57a57;hb=ac86c2bb40746fbedf70a19af3307e5da642b04a;hp=bd53fae9e96e0a2708fa67e56cd338ecdc2212d6;hpb=b52002fa2001e6472d6aa3dde263b85f654c6e8e;p=senf.git diff --git a/Utils/Logger/SConscript b/Utils/Logger/SConscript index bd53fae..ab682dd 100644 --- a/Utils/Logger/SConscript +++ b/Utils/Logger/SConscript @@ -8,9 +8,10 @@ import SENFSCons, glob SENFSCons.StandardTargets(env) SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh") - if f not in ('all_includes.hh','INet.hh') and not f.endswith('.test.hh') ]) + if ( f not in ('all_includes.hh','Logger.hh') + and not f.endswith('.test.hh') ) ]) sources = SENFSCons.GlobSources() -objects = SENFSCons.Objects( env, sources = sources ) +objects = SENFSCons.Objects( env, sources = sources, LIBS = [ 'Utils' ] ) SENFSCons.Doxygen(env)