Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1364)

Side by Side Diff: src/helper/wscript

Issue 88094: 802.11s mesh stack model (Closed)
Patch Set: Review finished by Mathieu, ready to merge Created 14 years, 6 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/helper/mesh-stack-installer.h ('k') | src/wscript » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- 1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2 2
3 def build(bld): 3 def build(bld):
4 helper = bld.create_ns3_module('helper', ['internet-stack', 'wifi', 'point-t o-point', 'csma', 'olsr', 'global-routing', 'onoff', 'packet-sink', 'udp-echo']) 4 helper = bld.create_ns3_module('helper', ['internet-stack', 'wifi', 'point-t o-point', 'csma', 'olsr', 'global-routing', 'onoff', 'packet-sink', 'udp-echo'])
5 helper.source = [ 5 helper.source = [
6 'node-container.cc', 6 'node-container.cc',
7 'net-device-container.cc', 7 'net-device-container.cc',
8 'wifi-helper.cc', 8 'wifi-helper.cc',
9 'olsr-helper.cc', 9 'olsr-helper.cc',
10 'point-to-point-helper.cc', 10 'point-to-point-helper.cc',
(...skipping 10 matching lines...) Expand all
21 'ipv4-interface-container.cc', 21 'ipv4-interface-container.cc',
22 'udp-echo-helper.cc', 22 'udp-echo-helper.cc',
23 'bridge-helper.cc', 23 'bridge-helper.cc',
24 'yans-wifi-helper.cc', 24 'yans-wifi-helper.cc',
25 'v4ping-helper.cc', 25 'v4ping-helper.cc',
26 'nqos-wifi-mac-helper.cc', 26 'nqos-wifi-mac-helper.cc',
27 'qos-wifi-mac-helper.cc', 27 'qos-wifi-mac-helper.cc',
28 'ipv4-global-routing-helper.cc', 28 'ipv4-global-routing-helper.cc',
29 'ipv4-list-routing-helper.cc', 29 'ipv4-list-routing-helper.cc',
30 'ipv4-routing-helper.cc', 30 'ipv4-routing-helper.cc',
31 'mesh-helper.cc',
32 'dot11s-installer.cc',
33 'flame-installer.cc',
31 'athstats-helper.cc', 34 'athstats-helper.cc',
32 'ipv6-address-helper.cc', 35 'ipv6-address-helper.cc',
33 'ipv6-interface-container.cc', 36 'ipv6-interface-container.cc',
34 'ipv6-static-routing-helper.cc', 37 'ipv6-static-routing-helper.cc',
35 'ipv6-list-routing-helper.cc', 38 'ipv6-list-routing-helper.cc',
36 'ipv6-routing-helper.cc', 39 'ipv6-routing-helper.cc',
37 'ping6-helper.cc', 40 'ping6-helper.cc',
38 ] 41 ]
39 42
40 headers = bld.new_task_gen('ns3header') 43 headers = bld.new_task_gen('ns3header')
(...skipping 17 matching lines...) Expand all
58 'ipv4-interface-container.h', 61 'ipv4-interface-container.h',
59 'udp-echo-helper.h', 62 'udp-echo-helper.h',
60 'bridge-helper.h', 63 'bridge-helper.h',
61 'yans-wifi-helper.h', 64 'yans-wifi-helper.h',
62 'v4ping-helper.h', 65 'v4ping-helper.h',
63 'nqos-wifi-mac-helper.h', 66 'nqos-wifi-mac-helper.h',
64 'qos-wifi-mac-helper.h', 67 'qos-wifi-mac-helper.h',
65 'ipv4-global-routing-helper.h', 68 'ipv4-global-routing-helper.h',
66 'ipv4-list-routing-helper.h', 69 'ipv4-list-routing-helper.h',
67 'ipv4-routing-helper.h', 70 'ipv4-routing-helper.h',
71 'mesh-helper.h',
72 'mesh-stack-installer.h',
73 'dot11s-installer.h',
74 'flame-installer.h',
68 'athstats-helper.h', 75 'athstats-helper.h',
69 'ipv6-address-helper.h', 76 'ipv6-address-helper.h',
70 'ipv6-interface-container.h', 77 'ipv6-interface-container.h',
71 'ipv6-static-routing-helper.h', 78 'ipv6-static-routing-helper.h',
72 'ipv6-list-routing-helper.h', 79 'ipv6-list-routing-helper.h',
73 'ipv6-routing-helper.h', 80 'ipv6-routing-helper.h',
74 'ping6-helper.h', 81 'ping6-helper.h',
75 ] 82 ]
76 83
77 env = bld.env_of_name('default') 84 env = bld.env_of_name('default')
78 if env['ENABLE_EMU']: 85 if env['ENABLE_EMU']:
79 helper.source.extend([ 86 helper.source.extend([
80 'emu-helper.cc', 87 'emu-helper.cc',
81 ]) 88 ])
82 headers.source.extend([ 89 headers.source.extend([
83 'emu-helper.h', 90 'emu-helper.h',
84 ]) 91 ])
85 if env['ENABLE_TAP']: 92 if env['ENABLE_TAP']:
86 helper.source.extend([ 93 helper.source.extend([
87 'tap-bridge-helper.cc', 94 'tap-bridge-helper.cc',
88 ]) 95 ])
89 headers.source.extend([ 96 headers.source.extend([
90 'tap-bridge-helper.h', 97 'tap-bridge-helper.h',
91 ]) 98 ])
92 99
OLDNEW
« no previous file with comments | « src/helper/mesh-stack-installer.h ('k') | src/wscript » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b