Move include files in debian packge into 'senf' subdirectory
[senf.git] / PPI / SConscript
1 Import('env')
2 import SENFSCons, glob
3
4 ###########################################################################
5
6 SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
7                                if f not in ('all_includes.hh','PPI.hh') and not f.endswith('.test.hh') ])
8
9 SConscript(glob.glob("*/SConscript"))
10
11 sources = SENFSCons.GlobSources(subdirs=[ 'detail' ])
12
13 SENFSCons.StandardTargets(env)
14
15 SENFSCons.Lib(env,
16              library = 'PPI',
17              sources = sources,
18              LIBS = [ 'Scheduler', 'Packets', 'Socket', 'Utils' ])
19
20 SENFSCons.Doxygen(env, extra_sources=[
21     env.Dia2Png('scenario.dia'),
22     env.Dia2Png('classes.dia'),
23     env.Dia2Png('ratestuffer.dia'),
24 ])
25
26 SENFSCons.InstallIncludeFiles(env, [ 'PPI.hh', 'all_includes.hh' ])