Move include files in debian packge into 'senf' subdirectory
[senf.git] / Packets / 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 'defined(SENF_PACKETS_DECL_ONLY)' in file(f).read() ])
10
11 SENFSCons.StandardTargets(env)
12 SENFSCons.Lib(env,
13               library = 'Packets',
14               sources = SENFSCons.GlobSources(),
15               LIBS = [ 'Socket', 'Utils' ])
16 SENFSCons.Doxygen(env, extra_sources = [
17     env.Dia2Png("structure.dia")
18 ])
19
20 SConscript(glob.glob("*/SConscript"))
21