src/tools/wscript
author Tom Henderson <tomh@tomh.org>
Tue, 18 Jun 2013 10:05:15 -0700
changeset 9839 7bcd513dc6a2
parent 9277 0f87d1cb030c
child 9840 ffe6c110c1ad
permissions -rw-r--r--
move event-garbage-collector from tools module to core/helper

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

def build(bld):

    module = bld.create_ns3_module('tools', ['network', 'stats'])
    module.source = [
        'model/gnuplot.cc',
        'model/delay-jitter-estimation.cc',
        ]

    module_test = bld.create_ns3_module_test_library('tools')
    module_test.source = [
        'test/average-test-suite.cc',
        ]
    
    headers = bld(features='ns3header')
    headers.module = 'tools'
    headers.source = [
        'model/average.h',
        'model/gnuplot.h',
        'model/delay-jitter-estimation.h',
        ]

    if (bld.env['ENABLE_EXAMPLES']):
        bld.recurse('examples')

    bld.ns3_python_bindings()