Packets: Fix VariantParser invalid parser access bug
[senf.git] / Utils / Logger / SConscript
index bd53fae..6b3c30f 100644 (file)
@@ -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)