Utils/Logger: Implement Area and Stream registry
[senf.git] / Utils / Logger / SConscript
1 # -*- python -*-
2
3 Import('env')
4 import SENFSCons, glob
5
6 ###########################################################################
7
8 SENFSCons.StandardTargets(env)
9
10 SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
11                                if f not in ('all_includes.hh','INet.hh') and not f.endswith('.test.hh') ])
12 sources = SENFSCons.GlobSources()
13 objects = SENFSCons.Objects( env, sources = sources, LIBS = [ 'Utils' ] )
14
15 SENFSCons.Doxygen(env)
16
17 Return('objects')