X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FSConscript;h=6b3c30fd92411900453a6ae6eeec3d849beffe24;hb=445c71d8d242f4ce3d23d8db8d1faf909943cfec;hp=138b2825d683e7fc25c5f167e0d4791e51b78ca8;hpb=9ff976ea47b175355a1f7ef4d05f14edb98a82e4;p=senf.git diff --git a/Utils/Logger/SConscript b/Utils/Logger/SConscript index 138b282..6b3c30f 100644 --- a/Utils/Logger/SConscript +++ b/Utils/Logger/SConscript @@ -8,10 +8,13 @@ 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, LIBS = [ 'Utils' ] ) +SENFSCons.InstallIncludeFiles(env, [ 'SenfLog.hh' ]) + SENFSCons.Doxygen(env) Return('objects')