Move Console from Scheduler into Utils
[senf.git] / Utils / SConscript
1 # -*- python -*-
2
3 Import('env')
4 import SENFSCons, glob, os.path
5
6 ###########################################################################
7
8 SENFSCons.StandardTargets(env)
9
10 # OUCH ... another hack to work around a scons bug ...
11 if not os.path.exists("Logger/all_includes.hh"):
12     Execute(Touch("Logger/all_includes.hh"))
13
14 sources, testSources = SENFSCons.GlobSources()
15 objects = SENFSCons.Objects( env, sources = sources, testSources=testSources )
16
17 lib = SENFSCons.Lib(env,
18                     library = 'Utils',
19                     sources = objects)
20
21 SENFSCons.Doxygen(env)
22 SENFSCons.InstallIncludeFiles(env, [ 'Logger.hh', 'Daemon.hh' ])
23
24 SConscript(glob.glob("*/SConscript"))