implemented nextPacketType/Range for SNDU (yeah!)
[senf.git] / Examples / DVBAdapter / SConscript
1 Import('env')
2 import SENFSCons
3
4 import glob
5 import os.path
6
7 ###########################################################################
8
9 for f in glob.glob('*.cc'):
10     bin = os.path.splitext(f)[0]
11     
12     SENFSCons.Binary(env, bin, f,
13                  LIBS = [ 'Scheduler', 'Packets', 'Socket', 'Utils' ],
14                  OBJECTS = [ '#/Packets/DefaultBundle/DefaultBundle.o',
15                              '#/Packets/MPEGDVBBundle/MPEGDVBBundle.o' ]);