src/csma-layout/wscript
changeset 7487 82cd20da9650
parent 7293 0f574c532cee
child 7872 ff978a217184
equal deleted inserted replaced
7477:4764c1472bd6 7487:82cd20da9650
     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