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

Delta Between Two Patch Sets: src/wifi/wscript

Issue 329500043: Wi-Fi adjacent channel modeling through transmit spectrum mask (OFDM) (Closed)
Left Patch Set: Handle review comments and add unit tests Created 6 years, 4 months ago
Right Patch Set: Adapting channel width following Sebastien's recommendations in Bug 2483 Created 6 years, 2 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« src/wifi/test/wifi-test.cc ('K') | « src/wifi/test/wifi-transmit-mask-test.cc ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 obj = bld.create_ns3_module('wifi', ['network', 'propagation', 'energy', 'sp ectrum', 'antenna', 'mobility']) 4 obj = bld.create_ns3_module('wifi', ['network', 'propagation', 'energy', 'sp ectrum', 'antenna', 'mobility'])
5 obj.source = [ 5 obj.source = [
6 'model/wifi-utils.cc', 6 'model/wifi-utils.cc',
7 'model/wifi-information-element.cc', 7 'model/wifi-information-element.cc',
8 'model/wifi-information-element-vector.cc', 8 'model/wifi-information-element-vector.cc',
9 'model/wifi-mode.cc', 9 'model/wifi-mode.cc',
10 'model/ssid.cc', 10 'model/ssid.cc',
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 obj_test = bld.create_ns3_module_test_library('wifi') 99 obj_test = bld.create_ns3_module_test_library('wifi')
100 obj_test.source = [ 100 obj_test.source = [
101 'test/block-ack-test-suite.cc', 101 'test/block-ack-test-suite.cc',
102 'test/dcf-manager-test.cc', 102 'test/dcf-manager-test.cc',
103 'test/tx-duration-test.cc', 103 'test/tx-duration-test.cc',
104 'test/power-rate-adaptation-test.cc', 104 'test/power-rate-adaptation-test.cc',
105 'test/wifi-test.cc', 105 'test/wifi-test.cc',
106 'test/spectrum-wifi-phy-test.cc', 106 'test/spectrum-wifi-phy-test.cc',
107 'test/wifi-aggregation-test.cc', 107 'test/wifi-aggregation-test.cc',
108 'test/wifi-error-rate-models-test.cc', 108 'test/wifi-error-rate-models-test.cc',
109 'test/wifi-test-spectrum-value-h.cc', 109 'test/wifi-transmit-mask-test.cc',
110 ] 110 ]
111 111
112 headers = bld(features='ns3header') 112 headers = bld(features='ns3header')
113 headers.module = 'wifi' 113 headers.module = 'wifi'
114 headers.source = [ 114 headers.source = [
115 'model/wifi-utils.h', 115 'model/wifi-utils.h',
116 'model/wifi-information-element.h', 116 'model/wifi-information-element.h',
117 'model/wifi-information-element-vector.h', 117 'model/wifi-information-element-vector.h',
118 'model/wifi-net-device.h', 118 'model/wifi-net-device.h',
119 'model/wifi-mode.h', 119 'model/wifi-mode.h',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 209
210 if bld.env['ENABLE_GSL']: 210 if bld.env['ENABLE_GSL']:
211 obj.use.extend(['GSL', 'GSLCBLAS', 'M']) 211 obj.use.extend(['GSL', 'GSLCBLAS', 'M'])
212 obj_test.use.extend(['GSL', 'GSLCBLAS', 'M']) 212 obj_test.use.extend(['GSL', 'GSLCBLAS', 'M'])
213 213
214 if (bld.env['ENABLE_EXAMPLES']): 214 if (bld.env['ENABLE_EXAMPLES']):
215 bld.recurse('examples') 215 bld.recurse('examples')
216 216
217 bld.ns3_python_bindings() 217 bld.ns3_python_bindings()
218 218
LEFTRIGHT

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