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

Side by Side Diff: src/applications/chord-ipv4/wscript

Issue 180107: Chord/DHash support in ns-3
Patch Set: Created 14 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:
View unified diff | Download patch
OLDNEW
(Empty)
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3 def build(bld):
4 module = bld.create_ns3_module('chord-ipv4', ['node', 'internet-stack', 'csm a'])
5 module.source = [
6 'chord-ipv4.cc',
7 'chord-identifier.cc',
8 'chord-node.cc',
9 'chord-node-table.cc',
10 'chord-vnode.cc',
11 'chord-message.cc',
12 'chord-transaction.cc',
13 'dhash-object.cc',
14 'dhash-message.cc',
15 'dhash-connection.cc',
16 'dhash-transaction.cc',
17 'dhash-ipv4.cc',
18 ]
19 headers = bld.new_task_gen('ns3header')
20 headers.module = 'chord-ipv4'
21 headers.source = [
22 'chord-ipv4.h',
23 'chord-identifier.h',
24 'chord-node.h',
25 'chord-node-table.h',
26 'chord-vnode.h',
27 'chord-message.h',
28 'chord-transaction.h',
29 'dhash-object.h',
30 'dhash-message.h',
31 'dhash-connection.h',
32 'dhash-transaction.h',
33 'dhash-ipv4.h',
34 ]
35
OLDNEW

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