672c29beb5ca20b7c6bc8952f6c21b7a050c6919
[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','Logger.hh','SenfLog.hh')
12                                     and not f.endswith('.test.hh') ) ])
13 sources = SENFSCons.GlobSources()
14 objects = SENFSCons.Objects( env, sources = sources, LIBS = [ 'Utils', 'Socket' ] )
15
16 SENFSCons.Doxygen(env)
17
18 Return('objects')