src/csma-layout/wscript
author John Abraham<john.abraham@gatech.edu>
Tue, 26 Apr 2011 15:18:32 -0700
changeset 7089 ebe626d82692
child 7293 0f574c532cee
permissions -rw-r--r--
Bug 1105 Move topology helpers into separate per-device modules

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

def build(bld):
    obj = bld.create_ns3_module('csma-layout', ['csma', 'network', 'applications'])
    obj.source = [
        'model/csma-star-helper.cc',
        ]
    headers = bld.new_task_gen('ns3header')
    headers.module = 'csma-layout'
    headers.source = [
        'model/csma-star-helper.h',
        ]

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

    #bld.ns3_python_bindings()