## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-

def build(bld):
    module = bld.create_ns3_module('bulk-send', ['core', 'simulator', 'node'])
    module.source = [
        'bulk-send-application.cc',
        ]
    headers = bld.new_task_gen('ns3header')
    headers.module = 'bulk-send'
    headers.source = [
        'bulk-send-application.h',
        ]

