Combine all boot build stuff in a single scons tool
[senf.git] / Utils / Logger / SConscript
1 # -*- python -*-
2
3 Import('env')
4 import SENFSCons, glob
5
6 ###########################################################################
7
8 SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
9                                if ( f not in ('all_includes.hh','Logger.hh','SenfLog.hh')
10                                     and not f.endswith('.test.hh') ) ])
11
12 sources, tests, includes = SENFSCons.Glob(env)
13
14 env.Append(ALLOBJECTS = env.Object(sources))
15 env.BoostUnitTest('test', tests)
16 SENFSCons.Doxygen(env)
17 env.InstallSubdir('$INCLUDEINSTALLDIR', includes)