Files
unison/src/applications/packet-sink/wscript
2011-02-21 09:11:37 -08:00

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',
]