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

Side by Side Diff: src/sixlowpan/wscript

Issue 10945044: 6LoWPAN module (Closed)
Patch Set: Fix guessed MAC address length Created 10 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:
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('sixlowpan', ['internet'])
Tom Henderson 2013/07/25 16:24:55 suggest to list all dependencies here: 'internet'
5 module.includes = '.'
6 module.source = [
7 'model/sixlowpan-net-device.cc',
8 'model/sixlowpan-header.cc',
9 'helper/sixlowpan-helper.cc',
10 ]
11
12 headers = bld(features=['ns3header'])
13 headers.module = 'sixlowpan'
14 headers.source = [
15 'model/sixlowpan-net-device.h',
16 'model/sixlowpan-header.h',
17 'helper/sixlowpan-helper.h',
18 ]
19
20
21 if (bld.env['ENABLE_EXAMPLES']):
22 bld.recurse('examples')
OLDNEW
« src/sixlowpan/model/sixlowpan-net-device.cc ('K') | « src/sixlowpan/model/sixlowpan-net-device.cc ('k') | no next file » | no next file with comments »

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