src/propagation/examples/wscript
author Tom Henderson <tomh@tomh.org>
Tue, 18 Jun 2013 13:42:57 -0700
changeset 9843 ea6ed35dd7b2
parent 8786 8f366d5eee06
permissions -rw-r--r--
move average.h from tools to stats module
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7025
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
     1
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
     2
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
     3
def build(bld):
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
     4
    if not bld.env['ENABLE_EXAMPLES']:
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
     5
        return;
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
     6
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
     7
    obj = bld.create_ns3_program('main-propagation-loss',
9843
ea6ed35dd7b2 move average.h from tools to stats module
Tom Henderson <tomh@tomh.org>
parents: 8786
diff changeset
     8
                                 ['core', 'mobility', 'config-store', 'stats', 'propagation'])
7025
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
     9
    obj.source = 'main-propagation-loss.cc'
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
    10
8786
8f366d5eee06 Bug 1140: fixed. New Jakes model has been implemented.
Kirill Andreev <andreev@telum.ru>
parents: 7025
diff changeset
    11
    obj = bld.create_ns3_program('jakes-propagation-model-example',
8f366d5eee06 Bug 1140: fixed. New Jakes model has been implemented.
Kirill Andreev <andreev@telum.ru>
parents: 7025
diff changeset
    12
                                 ['core', 'propagation'])
8f366d5eee06 Bug 1140: fixed. New Jakes model has been implemented.
Kirill Andreev <andreev@telum.ru>
parents: 7025
diff changeset
    13
    obj.source = 'jakes-propagation-model-example.cc'
7025
32212c736ab4 Move examples out of samples directory and remove it
Mitch Watrous <watrous@u.washington.edu>
parents:
diff changeset
    14
8786
8f366d5eee06 Bug 1140: fixed. New Jakes model has been implemented.
Kirill Andreev <andreev@telum.ru>
parents: 7025
diff changeset
    15
8f366d5eee06 Bug 1140: fixed. New Jakes model has been implemented.
Kirill Andreev <andreev@telum.ru>
parents: 7025
diff changeset
    16