Move Console from Scheduler into Utils
[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.Lib( env,
15                          library = 'Logger',
16                          sources = sources,
17                          LIBS = [ 'Scheduler', 'Socket', 'Utils' ] )
18
19 SENFSCons.Doxygen(env)