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

Delta Between Two Patch Sets: src/wave/wscript

Issue 45320043: New Simple applications (Closed)
Left Patch Set: Created 10 years, 3 months ago
Right Patch Set: Small changes to allow infinite sending Created 9 years, 8 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:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
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 options(opt): 3 # def options(opt):
4 # pass 4 # pass
5 5
6 # def configure(conf): 6 # def configure(conf):
7 # conf.check_nonfatal(header_name='stdint.h', define_name='HAVE_STDINT_H') 7 # conf.check_nonfatal(header_name='stdint.h', define_name='HAVE_STDINT_H')
8 8
9 def build(bld): 9 def build(bld):
10 module = bld.create_ns3_module('wave', ['core','wifi', 'applications']) 10 module = bld.create_ns3_module('wave', ['core', 'wifi'])
11 module.source = [ 11 module.source = [
12 'model/wave-mac-low.cc', 12 'model/wave-mac-low.cc',
13 'model/ocb-wifi-mac.cc', 13 'model/ocb-wifi-mac.cc',
14 'model/vendor-specific-action.cc', 14 'model/vendor-specific-action.cc',
15 'model/higher-tx-tag.cc', 15 'model/higher-tx-tag.cc',
16 'helper/wave-mac-helper.cc', 16 'helper/wave-mac-helper.cc',
17 'helper/wifi-80211p-helper.cc', 17 'helper/wifi-80211p-helper.cc',
18 ] 18 ]
19 19
20 module_test = bld.create_ns3_module_test_library('wave') 20 module_test = bld.create_ns3_module_test_library('wave')
(...skipping 10 matching lines...) Expand all
31 'model/higher-tx-tag.h', 31 'model/higher-tx-tag.h',
32 'helper/wave-mac-helper.h', 32 'helper/wave-mac-helper.h',
33 'helper/wifi-80211p-helper.h', 33 'helper/wifi-80211p-helper.h',
34 ] 34 ]
35 35
36 if bld.env.ENABLE_EXAMPLES: 36 if bld.env.ENABLE_EXAMPLES:
37 bld.recurse('examples') 37 bld.recurse('examples')
38 38
39 bld.ns3_python_bindings() 39 bld.ns3_python_bindings()
40 40
LEFTRIGHT

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