equal
deleted
inserted
replaced
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 |
3 |
4 def build(bld): |
4 def build(bld): |
5 module = bld.create_obj('cpp', 'shlib') |
5 module = bld.create_ns3_module('point-to-point', ['node']) |
6 module.name = 'ns3-point-to-point' |
|
7 module.target = module.name |
|
8 module.uselib_local = ['ns3-node'] |
|
9 module.source = [ |
6 module.source = [ |
10 'point-to-point-net-device.cc', |
7 'point-to-point-net-device.cc', |
11 'point-to-point-channel.cc', |
8 'point-to-point-channel.cc', |
12 'point-to-point-topology.cc', |
9 'point-to-point-topology.cc', |
13 ] |
10 ] |