X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FSConscript;h=6b3c30fd92411900453a6ae6eeec3d849beffe24;hb=2ae8369efcfae23a1961d13aef0b42d45baed03a;hp=bd53fae9e96e0a2708fa67e56cd338ecdc2212d6;hpb=b52002fa2001e6472d6aa3dde263b85f654c6e8e;p=senf.git diff --git a/Utils/Logger/SConscript b/Utils/Logger/SConscript index bd53fae..6b3c30f 100644 --- a/Utils/Logger/SConscript +++ b/Utils/Logger/SConscript @@ -8,9 +8,12 @@ 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','SenfLog.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.InstallIncludeFiles(env, [ 'SenfLog.hh' ]) SENFSCons.Doxygen(env)