Completely refactor install targets
[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, includes = SENFSCons.Glob(env)
13
14 SENFSCons.StandardTargets(env)
15 SENFSCons.Lib(env, sources)
16 SENFSCons.Doxygen(env)
17 SENFSCons.InstallIncludeFiles(env, includes)