src/flame/wscript
author Mitch Watrous <watrous@u.washington.edu>
Thu, 03 Mar 2011 14:03:30 -0800
changeset 6849 937d7ded9d6d
parent 5826 src/devices/mesh/flame/wscript@d0765c1313c9
child 6856 298dbc966811
permissions -rw-r--r--
Modularize flame module and move it to src
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5078
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
     1
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
     2
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
     3
def build(bld):
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
     4
    obj = bld.create_ns3_module('flame', ['mesh'])
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
     5
    obj.source = [
6849
937d7ded9d6d Modularize flame module and move it to src
Mitch Watrous <watrous@u.washington.edu>
parents: 5826
diff changeset
     6
        'model/flame-header.cc',
937d7ded9d6d Modularize flame module and move it to src
Mitch Watrous <watrous@u.washington.edu>
parents: 5826
diff changeset
     7
        'model/flame-rtable.cc',
937d7ded9d6d Modularize flame module and move it to src
Mitch Watrous <watrous@u.washington.edu>
parents: 5826
diff changeset
     8
        'model/flame-protocol-mac.cc',
937d7ded9d6d Modularize flame module and move it to src
Mitch Watrous <watrous@u.washington.edu>
parents: 5826
diff changeset
     9
        'model/flame-protocol.cc',
937d7ded9d6d Modularize flame module and move it to src
Mitch Watrous <watrous@u.washington.edu>
parents: 5826
diff changeset
    10
        'test/flame-test-suite.cc',
5826
d0765c1313c9 Mesh:Flame: added regression test
Kirill Andreev <andreev@iitp.ru>
parents: 5315
diff changeset
    11
        'test/flame-regression.cc',
d0765c1313c9 Mesh:Flame: added regression test
Kirill Andreev <andreev@iitp.ru>
parents: 5315
diff changeset
    12
        'test/regression.cc',
5078
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
    13
        ]
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
    14
    headers = bld.new_task_gen('ns3header')
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
    15
    headers.module = 'flame'
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
    16
    headers.source = [
6849
937d7ded9d6d Modularize flame module and move it to src
Mitch Watrous <watrous@u.washington.edu>
parents: 5826
diff changeset
    17
        'model/flame-protocol.h',
937d7ded9d6d Modularize flame module and move it to src
Mitch Watrous <watrous@u.washington.edu>
parents: 5826
diff changeset
    18
        'model/flame-header.h',
937d7ded9d6d Modularize flame module and move it to src
Mitch Watrous <watrous@u.washington.edu>
parents: 5826
diff changeset
    19
        'model/flame-rtable.h',
937d7ded9d6d Modularize flame module and move it to src
Mitch Watrous <watrous@u.washington.edu>
parents: 5826
diff changeset
    20
        'model/flame-protocol-mac.h',
5078
697573fd6554 Added FLAME header
Kirill Andreev <andreev@iitp.ru>
parents:
diff changeset
    21
        ]