2009-11-24 10:16:58 -05:00
|
|
|
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
|
obj = bld.create_ns3_program('dumbbell-animation',
|
2011-04-26 15:18:32 -07:00
|
|
|
['netanim', 'applications', 'point-to-point-layout'])
|
2009-11-24 10:16:58 -05:00
|
|
|
obj.source = 'dumbbell-animation.cc'
|
|
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('grid-animation',
|
2011-04-26 15:18:32 -07:00
|
|
|
['netanim', 'applications', 'point-to-point-layout'])
|
2009-11-24 10:16:58 -05:00
|
|
|
obj.source = 'grid-animation.cc'
|
|
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('star-animation',
|
2011-04-26 15:18:32 -07:00
|
|
|
['netanim', 'applications', 'point-to-point-layout'])
|
2009-11-24 10:16:58 -05:00
|
|
|
obj.source = 'star-animation.cc'
|