src/devices/wifi/wscript
author Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
Tue, 09 Oct 2007 12:17:02 +0200
changeset 1923 a8caecf6637f
parent 1922 dd18bc29fc3c
child 1924 0471fb5a3df8
permissions -rw-r--r--
add Dcf to build

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

def build(bld):
    obj = bld.create_ns3_module('wifi', ['node'])
    obj.source = [
        'propagation-delay-model.cc',
        'propagation-loss-model.cc',
        'wifi-channel.cc',
        'wifi-mode.cc',
        'ssid.cc',
        'wifi-phy.cc',
        'mac-stations.cc',
        'cr-mac-stations.cc',
        'arf-mac-stations.cc',
        'aarf-mac-stations.cc',
        'wifi-mac-header.cc',
        'wifi-mac-trailer.cc',
        'mac-parameters.cc',
        'mac-low.cc',
        'dcf.cc',
        ]
    headers = bld.create_obj('ns3header')
    headers.source = [
        'wifi-net-device.h',
        'wifi-net-device-factory.h',
        'wifi-channel.h',
        'wifi-mode.h',
        'ssid.h',
        'wifi-preamble.h',
        ]