src/point-to-point-layout/wscript
author Tommaso Pecorella <tommaso.pecorella@unifi.it>
Sat, 28 Jun 2014 12:35:08 +0200
changeset 10825 798057a32954
parent 9277 0f87d1cb030c
permissions -rw-r--r--
Bug 1941 - [cont.] Remove unnecessary dependency on Application module in other modules

## -*- 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'])
    module.includes = '.'
    module.source = [
        'model/point-to-point-dumbbell.cc',
        'model/point-to-point-grid.cc',
        'model/point-to-point-star.cc',
        ]

    headers = bld(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()