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

Delta Between Two Patch Sets: src/dsr/wscript

Issue 4823051: Dynamic Source Routing (DSR)
Left Patch Set: changes based on comments Created 12 years, 7 months ago
Right Patch Set: Added .rst file for feature discriptions, updated a little in route request process Created 12 years, 4 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
« no previous file with change/comment | « src/dsr/test/dsr-test-suite.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
(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 build(bld): 3 def build(bld):
4 module = bld.create_ns3_module('dsr', ['internet', 'wifi', 'mesh', 'applicat ions']) 4 module = bld.create_ns3_module('dsr', ['internet', 'wifi', 'mesh', 'applicat ions'])
5 module.includes = '.' 5 module.includes = '.'
6 module.source = [ 6 module.source = [
7 'model/dsr-routing.cc', 7 'model/dsr-routing.cc',
8 'model/dsr-options.cc', 8 'model/dsr-options.cc',
9 'model/dsr-fs-header.cc', 9 'model/dsr-fs-header.cc',
10 'model/dsr-option-header.cc', 10 'model/dsr-option-header.cc',
11 'model/dsr-maintain-buff.cc', 11 'model/dsr-maintain-buff.cc',
12 'model/dsr-rsendbuff.cc', 12 'model/dsr-rsendbuff.cc',
13 'model/dsr-rcache.cc', 13 'model/dsr-rcache.cc',
14 'model/dsr-rreq-table.cc', 14 'model/dsr-rreq-table.cc',
15 'model/dsr-gratuitous-reply-table.cc', 15 'model/dsr-gratuitous-reply-table.cc',
16 'helper/dsr-helper.cc', 16 'helper/dsr-helper.cc',
17 'helper/dsr-main-helper.cc', 17 'helper/dsr-main-helper.cc',
18 'test/dsr-test-suite.cc', 18 » 'test/dsr-test-suite.cc',
19 ] 19 ]
20 ········
20 headers = bld.new_task_gen('ns3header') 21 headers = bld.new_task_gen('ns3header')
21 headers.module = 'dsr' 22 headers.module = 'dsr'
22 headers.source = [ 23 headers.source = [
23 'model/dsr-routing.h', 24 'model/dsr-routing.h',
24 'model/dsr-options.h', 25 'model/dsr-options.h',
25 'model/dsr-fs-header.h', 26 'model/dsr-fs-header.h',
26 'model/dsr-option-header.h', 27 'model/dsr-option-header.h',
27 'model/dsr-maintain-buff.h', 28 'model/dsr-maintain-buff.h',
28 'model/dsr-rsendbuff.h', 29 'model/dsr-rsendbuff.h',
29 'model/dsr-rcache.h', 30 'model/dsr-rcache.h',
30 'model/dsr-rreq-table.h', 31 'model/dsr-rreq-table.h',
31 'model/dsr-gratuitous-reply-table.h', 32 'model/dsr-gratuitous-reply-table.h',
32 'helper/dsr-helper.h', 33 'helper/dsr-helper.h',
33 'helper/dsr-main-helper.h', 34 'helper/dsr-main-helper.h',
34 ] 35 ]
35 36
36 if (bld.env['ENABLE_EXAMPLES']): 37 if (bld.env['ENABLE_EXAMPLES']):
37 bld.add_subdirs('examples') 38 bld.add_subdirs('examples')
39
40 ······
LEFTRIGHT

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