X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FSConscript;h=6b3c30fd92411900453a6ae6eeec3d849beffe24;hb=f32fbba56a55712998d251e914eb6e9ad95890e3;hp=ab682dd05b1f572cb1eba7be7b86fc6d26c57a57;hpb=54eed72c506b09ef5b4be0b62fecedfbc0e3f261;p=senf.git diff --git a/Utils/Logger/SConscript b/Utils/Logger/SConscript index ab682dd..6b3c30f 100644 --- a/Utils/Logger/SConscript +++ b/Utils/Logger/SConscript @@ -8,11 +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','Logger.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')