equal
deleted
inserted
replaced
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
2 |
2 |
3 def build(bld): |
3 def build(bld): |
4 obj = bld.create_ns3_program('dumbbell-animation', |
4 obj = bld.create_ns3_program('dumbbell-animation', |
5 ['netanim']) |
5 ['netanim', 'applications']) |
6 obj.source = 'dumbbell-animation.cc' |
6 obj.source = 'dumbbell-animation.cc' |
7 |
7 |
8 obj = bld.create_ns3_program('grid-animation', |
8 obj = bld.create_ns3_program('grid-animation', |
9 ['netanim']) |
9 ['netanim', 'applications']) |
10 obj.source = 'grid-animation.cc' |
10 obj.source = 'grid-animation.cc' |
11 |
11 |
12 obj = bld.create_ns3_program('star-animation', |
12 obj = bld.create_ns3_program('star-animation', |
13 ['netanim']) |
13 ['netanim', 'applications']) |
14 obj.source = 'star-animation.cc' |
14 obj.source = 'star-animation.cc' |