X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FSConscript;h=a25eedeeaf94f51675bff838bb41a3474ee33bf0;hb=82e8df5de8b11448423388632e8602ad97bc7885;hp=bd53fae9e96e0a2708fa67e56cd338ecdc2212d6;hpb=b52002fa2001e6472d6aa3dde263b85f654c6e8e;p=senf.git diff --git a/Utils/Logger/SConscript b/Utils/Logger/SConscript index bd53fae..a25eede 100644 --- a/Utils/Logger/SConscript +++ b/Utils/Logger/SConscript @@ -5,13 +5,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') ]) -sources = SENFSCons.GlobSources() -objects = SENFSCons.Objects( env, sources = sources ) + if ( f not in ('all_includes.hh','Logger.hh','SenfLog.hh') + and not f.endswith('.test.hh') ) ]) -SENFSCons.Doxygen(env) +sources, includes = SENFSCons.Glob(env) -Return('objects') +SENFSCons.StandardTargets(env) +SENFSCons.Lib(env, sources) +SENFSCons.Doxygen(env) +SENFSCons.InstallIncludeFiles(env, includes)