14 lines
360 B
Python
14 lines
360 B
Python
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
def build(bld):
|
|
module = bld.create_ns3_module('packet-sink', ['network'])
|
|
module.source = [
|
|
'packet-sink.cc',
|
|
]
|
|
headers = bld.new_task_gen('ns3header')
|
|
headers.module = 'packet-sink'
|
|
headers.source = [
|
|
'packet-sink.h',
|
|
]
|
|
|