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-- |
5078 | 1 |
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
2 |
||
3 |
def build(bld): |
|
4 |
obj = bld.create_ns3_module('flame', ['mesh']) |
|
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 | 13 |
] |
14 |
headers = bld.new_task_gen('ns3header') |
|
15 |
headers.module = 'flame' |
|
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 | 21 |
] |