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

Delta Between Two Patch Sets: src/routing/dsdv/wscript

Issue 1668042: DSDV Routing Protocol for ns-3
Left Patch Set: New Patchset for dsdv incorporating the new format, included testcase and example as well Created 13 years, 7 months ago
Right Patch Set: Full DSDV patch to be merged into ns-3 Created 13 years, 3 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
« no previous file with change/comment | « src/routing/dsdv/test/dsdv-testcase.cc ('k') | src/wscript » ('j') | 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 module = bld.create_ns3_module('dsdv', ['internet-stack', 'contrib', 'wifi'] ) 4 module = bld.create_ns3_module('dsdv', ['internet-stack', 'contrib', 'wifi'] )
5 module.includes = '.' 5 module.includes = '.'
6 module.source = [ 6 module.source = [
7 'model/dsdv-rtable.cc', 7 'model/dsdv-rtable.cc',
8 'model/dsdv-rqueue.cc', 8 'model/dsdv-packet-queue.cc',
9 'model/dsdv-packet.cc', 9 'model/dsdv-packet.cc',
10 'model/dsdv-routing-protocol.cc', 10 'model/dsdv-routing-protocol.cc',
11 » 'helper/dsdv-helper.cc', 11 'helper/dsdv-helper.cc',
12 'test/dsdv-testcase.cc', 12 'test/dsdv-testcase.cc',
13 ] 13 ]
14 14
15 headers = bld.new_task_gen('ns3header') 15 headers = bld.new_task_gen('ns3header')
16 headers.module = 'dsdv' 16 headers.module = 'dsdv'
17 headers.source = [ 17 headers.source = [
18 'model/dsdv-rtable.h', 18 'model/dsdv-rtable.h',
19 'model/dsdv-rqueue.h', 19 'model/dsdv-packet-queue.h',
20 'model/dsdv-packet.h', 20 'model/dsdv-packet.h',
21 'model/dsdv-routing-protocol.h', 21 'model/dsdv-routing-protocol.h',
22 » 'helper/dsdv-helper.h', 22 'helper/dsdv-helper.h',
23 ] 23 ]
24 if (bld.env['ENABLE_EXAMPLES']): 24 if (bld.env['ENABLE_EXAMPLES']):
25 bld.add_subdirs('examples') 25 bld.add_subdirs('examples')
LEFTRIGHT

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