src/point-to-point-layout/wscript
author Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
Thu, 08 Sep 2011 16:13:40 +0100
changeset 7487 82cd20da9650
parent 7096 7357a40d2dde
child 9277 0f87d1cb030c
permissions -rw-r--r--
Upgrade to waf-1.6.7, work in progress

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

def build(bld):
    module = bld.create_ns3_module('point-to-point-layout', ['internet', 'point-to-point', 'mobility', 'netanim'])
    module.includes = '.'
    module.source = [
        'model/point-to-point-dumbbell.cc',
        'model/point-to-point-grid.cc',
        'model/point-to-point-star.cc',
        ]

    headers = bld.new_task_gen(features=['ns3header'])
    headers.module = 'point-to-point-layout'
    headers.source = [
        'model/point-to-point-dumbbell.h',
        'model/point-to-point-grid.h',
        'model/point-to-point-star.h',
        ]

    bld.ns3_python_bindings()