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

Side by Side Diff: src/network/wscript

Issue 132870043: Simple[NetDevice,Channel] - not that simple anymore (Closed)
Patch Set: Doxygen and minor stuff Created 9 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/network/utils/simple-net-device.cc ('k') | src/test/global-routing-test-suite.cc » ('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 network = bld.create_ns3_module('network', ['core', 'stats']) 4 network = bld.create_ns3_module('network', ['core', 'stats'])
5 network.source = [ 5 network.source = [
6 'model/address.cc', 6 'model/address.cc',
7 'model/application.cc', 7 'model/application.cc',
8 'model/buffer.cc', 8 'model/buffer.cc',
9 'model/byte-tag-list.cc', 9 'model/byte-tag-list.cc',
10 'model/channel.cc', 10 'model/channel.cc',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'utils/simple-channel.cc', 54 'utils/simple-channel.cc',
55 'utils/simple-net-device.cc', 55 'utils/simple-net-device.cc',
56 'utils/packet-data-calculators.cc', 56 'utils/packet-data-calculators.cc',
57 'utils/packet-probe.cc', 57 'utils/packet-probe.cc',
58 'helper/application-container.cc', 58 'helper/application-container.cc',
59 'helper/net-device-container.cc', 59 'helper/net-device-container.cc',
60 'helper/node-container.cc', 60 'helper/node-container.cc',
61 'helper/packet-socket-helper.cc', 61 'helper/packet-socket-helper.cc',
62 'helper/trace-helper.cc', 62 'helper/trace-helper.cc',
63 'helper/delay-jitter-estimation.cc', 63 'helper/delay-jitter-estimation.cc',
64 'helper/simple-net-device-helper.cc',
64 ] 65 ]
65 66
66 network_test = bld.create_ns3_module_test_library('network') 67 network_test = bld.create_ns3_module_test_library('network')
67 network_test.source = [ 68 network_test.source = [
68 'test/buffer-test.cc', 69 'test/buffer-test.cc',
69 'test/drop-tail-queue-test-suite.cc', 70 'test/drop-tail-queue-test-suite.cc',
70 'test/error-model-test-suite.cc', 71 'test/error-model-test-suite.cc',
71 'test/ipv6-address-test-suite.cc', 72 'test/ipv6-address-test-suite.cc',
72 'test/packetbb-test-suite.cc', 73 'test/packetbb-test-suite.cc',
73 'test/packet-test-suite.cc', 74 'test/packet-test-suite.cc',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 'utils/simple-net-device.h', 137 'utils/simple-net-device.h',
137 'utils/pcap-test.h', 138 'utils/pcap-test.h',
138 'utils/packet-data-calculators.h', 139 'utils/packet-data-calculators.h',
139 'utils/packet-probe.h', 140 'utils/packet-probe.h',
140 'helper/application-container.h', 141 'helper/application-container.h',
141 'helper/net-device-container.h', 142 'helper/net-device-container.h',
142 'helper/node-container.h', 143 'helper/node-container.h',
143 'helper/packet-socket-helper.h', 144 'helper/packet-socket-helper.h',
144 'helper/trace-helper.h', 145 'helper/trace-helper.h',
145 'helper/delay-jitter-estimation.h', 146 'helper/delay-jitter-estimation.h',
147 'helper/simple-net-device-helper.h',
146 ] 148 ]
147 149
148 if (bld.env['ENABLE_EXAMPLES']): 150 if (bld.env['ENABLE_EXAMPLES']):
149 bld.recurse('examples') 151 bld.recurse('examples')
150 152
151 bld.ns3_python_bindings() 153 bld.ns3_python_bindings()
OLDNEW
« no previous file with comments | « src/network/utils/simple-net-device.cc ('k') | src/test/global-routing-test-suite.cc » ('j') | no next file with comments »

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