equal
deleted
inserted
replaced
3 def build(bld): |
3 def build(bld): |
4 obj = bld.create_ns3_module('csma-layout', ['csma', 'network', 'applications', 'netanim', 'point-to-point']) |
4 obj = bld.create_ns3_module('csma-layout', ['csma', 'network', 'applications', 'netanim', 'point-to-point']) |
5 obj.source = [ |
5 obj.source = [ |
6 'model/csma-star-helper.cc', |
6 'model/csma-star-helper.cc', |
7 ] |
7 ] |
8 headers = bld.new_task_gen('ns3header') |
8 headers = bld.new_task_gen(features=['ns3header']) |
9 headers.module = 'csma-layout' |
9 headers.module = 'csma-layout' |
10 headers.source = [ |
10 headers.source = [ |
11 'model/csma-star-helper.h', |
11 'model/csma-star-helper.h', |
12 ] |
12 ] |
13 |
13 |