Files
unison/src/applications/bulk-send/wscript

14 lines
381 B
Python

## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
module = bld.create_ns3_module('bulk-send', ['core', 'node'])
module.source = [
'bulk-send-application.cc',
]
headers = bld.new_task_gen('ns3header')
headers.module = 'bulk-send'
headers.source = [
'bulk-send-application.h',
]