Implement libPacket protocol bundles
[senf.git] / Packets / SConscript
1 # -*- python -*-
2
3 Import('env')
4 import SENFSCons, glob
5
6 ###########################################################################
7
8 sources = SENFSCons.GlobSources()
9
10 SENFSCons.StandardTargets(env)
11
12 SENFSCons.Lib(env,
13               library = 'Packets',
14               sources = sources,
15               LIBS = [ 'Socket', 'Utils' ])
16
17 SENFSCons.Doxygen(env, extra_sources = [
18     env.Dia2Png("structure.dia")
19 ])
20
21 SConscript(glob.glob("*/SConscript"))