Packets: Fix VariantParser invalid parser access bug
[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' ] )
15
16 SENFSCons.InstallIncludeFiles(env, [ 'SenfLog.hh' ])
17
18 SENFSCons.Doxygen(env)
19
20 Return('objects')