16 lines
406 B
Python
16 lines
406 B
Python
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
def build(bld):
|
|
obj = bld.create_obj('cpp', 'shlib')
|
|
obj.name = 'ns3-applications'
|
|
obj.target = obj.name
|
|
obj.uselib_local = ['ns3-node']
|
|
obj.source = [
|
|
'onoff-application.cc',
|
|
]
|
|
|
|
headers = bld.create_obj('ns3header')
|
|
headers.source = [
|
|
'onoff-application.h',
|
|
]
|