src/applications/wscript
author Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
Sat, 28 Jul 2007 14:14:16 +0100
changeset 1000 7c942ac88714
parent 953 e3b9f87fb76c
child 1217 2f7791ae388d
permissions -rw-r--r--
WAF: remove the obj.includes = '.' part from modules, since it causes build failure in OS X, and waf was just fixed to enable header files dependency tracking by default without needing to change obj.includes

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