src/netanim/examples/wscript
author Mitch Watrous <watrous@u.washington.edu>
Mon, 07 Mar 2011 16:59:09 -0800
changeset 6873 b2234c2d38d9
parent 6864 7a1f57da547e
child 7089 ebe626d82692
permissions -rw-r--r--
Fix dependencies in various wscripts
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5776
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
     1
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
     2
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
     3
def build(bld):
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
     4
    obj = bld.create_ns3_program('dumbbell-animation',
6873
b2234c2d38d9 Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents: 6864
diff changeset
     5
                                 ['netanim', 'applications'])
5776
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
     6
    obj.source = 'dumbbell-animation.cc'
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
     7
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
     8
    obj = bld.create_ns3_program('grid-animation',
6873
b2234c2d38d9 Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents: 6864
diff changeset
     9
                                 ['netanim', 'applications'])
5776
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
    10
    obj.source = 'grid-animation.cc'
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
    11
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
    12
    obj = bld.create_ns3_program('star-animation',
6873
b2234c2d38d9 Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents: 6864
diff changeset
    13
                                 ['netanim', 'applications'])
5776
aae948449722 Moved net-anim from contrib
Josh Pelkey <jpelkey@gatech.edu>
parents:
diff changeset
    14
    obj.source = 'star-animation.cc'