Files
unison/src/applications/wscript
Gustavo J. A. M. Carneiro 7aacb7d136 merge
2007-05-13 12:52:38 +01:00

17 lines
407 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',
]