de2d369b00e9c0550b5de909266cbfbe5499efcc
[senf.git] / PPI / SConscript
1 Import('env')
2 import SENFSCons, glob
3
4 ###########################################################################
5
6 SConscript(glob.glob("*/SConscript"))
7
8 SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
9                                if f not in ('all_includes.hh','PPI.hh') \
10                                   and not f.endswith('.test.hh') ])
11
12 sources, includes = SENFSCons.Glob(env, subdirs=[ 'detail' ])
13 SENFSCons.StandardTargets(env)
14 SENFSCons.Lib(env, sources)
15 SENFSCons.Doxygen(env, extra_sources=[
16     env.Dia2Png('scenario.dia'),
17     env.Dia2Png('classes.dia'),
18     env.Dia2Png('ratestuffer.dia'),
19 ])
20 SENFSCons.InstallIncludeFiles(env, includes)