examples/tcp/wscript
author Tom Henderson <tomh@tomh.org>
Mon, 15 Sep 2014 20:51:08 -0700
changeset 10956 fa4be182ef17
parent 9699 88d2659d664c
permissions -rw-r--r--
rescan remaining bindings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5369
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     1
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     2
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     3
def build(bld):
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     4
    obj = bld.create_ns3_program('tcp-large-transfer',
8849
22baeb9aabc8 remove explicit visualizer dependency from examples
Tom Henderson <tomh@tomh.org>
parents: 7712
diff changeset
     5
                                 ['point-to-point', 'applications', 'internet'])
5369
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     6
    obj.source = 'tcp-large-transfer.cc'
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     7
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     8
    obj = bld.create_ns3_program('tcp-nsc-lfn',
6873
b2234c2d38d9 Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents: 6834
diff changeset
     9
                                 ['point-to-point', 'applications', 'internet'])
5369
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    10
    obj.source = 'tcp-nsc-lfn.cc'
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    11
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    12
    obj = bld.create_ns3_program('tcp-nsc-zoo',
7140
d203296efb63 Fix an example dependency problem and fix some paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents: 7089
diff changeset
    13
                                 ['csma', 'internet', 'applications'])
5369
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    14
    obj.source = 'tcp-nsc-zoo.cc'
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    15
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    16
    obj = bld.create_ns3_program('tcp-star-server',
6873
b2234c2d38d9 Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents: 6834
diff changeset
    17
                                 ['point-to-point', 'applications', 'internet'])
5369
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    18
    obj.source = 'tcp-star-server.cc'
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    19
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    20
    obj = bld.create_ns3_program('star',
7089
ebe626d82692 Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents: 6883
diff changeset
    21
                                 ['netanim', 'point-to-point', 'point-to-point-layout', 'applications', 'internet'])
5369
86beb5869f67 split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
    22
    obj.source = 'star.cc'
6690
3fab9a03dacd Add BulkSendApplication
Josh Pelkey <jpelkey@gatech.edu>
parents: 5369
diff changeset
    23
3fab9a03dacd Add BulkSendApplication
Josh Pelkey <jpelkey@gatech.edu>
parents: 5369
diff changeset
    24
    obj = bld.create_ns3_program('tcp-bulk-send',
6873
b2234c2d38d9 Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents: 6834
diff changeset
    25
                                 ['point-to-point', 'applications', 'internet'])
6690
3fab9a03dacd Add BulkSendApplication
Josh Pelkey <jpelkey@gatech.edu>
parents: 5369
diff changeset
    26
    obj.source = 'tcp-bulk-send.cc'
9273
537e3d356935 new ns3 nsc tcp comparison example. Updated tcp documentation
Brian Swenson <bswenson3@gatech.edu>
parents: 8849
diff changeset
    27
537e3d356935 new ns3 nsc tcp comparison example. Updated tcp documentation
Brian Swenson <bswenson3@gatech.edu>
parents: 8849
diff changeset
    28
    obj = bld.create_ns3_program('tcp-nsc-comparison',
9699
88d2659d664c fixed another module dependency in examples/tcp/wscript
Nicola Baldo <nbaldo@cttc.es>
parents: 9696
diff changeset
    29
                                 ['point-to-point', 'internet', 'applications', 'flow-monitor'])
9696
4b977376f383 Westwood and Westwood+
Anh Nguyen annguyen@ittc.ku.edu
parents: 9284
diff changeset
    30
4b977376f383 Westwood and Westwood+
Anh Nguyen annguyen@ittc.ku.edu
parents: 9284
diff changeset
    31
    obj.source = 'tcp-nsc-comparison.cc'
4b977376f383 Westwood and Westwood+
Anh Nguyen annguyen@ittc.ku.edu
parents: 9284
diff changeset
    32
    
4b977376f383 Westwood and Westwood+
Anh Nguyen annguyen@ittc.ku.edu
parents: 9284
diff changeset
    33
    obj = bld.create_ns3_program('tcp-variants-comparison',
9284
050256dc29ea fixed a module dependency in examples/tcp/wscript
Nicola Baldo <nbaldo@cttc.es>
parents: 9273
diff changeset
    34
                                 ['point-to-point', 'internet', 'applications', 'flow-monitor'])
9273
537e3d356935 new ns3 nsc tcp comparison example. Updated tcp documentation
Brian Swenson <bswenson3@gatech.edu>
parents: 8849
diff changeset
    35
9696
4b977376f383 Westwood and Westwood+
Anh Nguyen annguyen@ittc.ku.edu
parents: 9284
diff changeset
    36
    obj.source = 'tcp-variants-comparison.cc'
4b977376f383 Westwood and Westwood+
Anh Nguyen annguyen@ittc.ku.edu
parents: 9284
diff changeset
    37