Files
unison/src/devices/mesh/802.11s/wscript
2009-03-17 19:40:09 +03:00

32 lines
1.1 KiB
Python

## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
obj = bld.create_ns3_module('802.11s', ['wifi'])
obj.source = [
'wifi-information-element.cc',
'mesh-configuration-element.cc',
'mesh-wifi-preq-information-element.cc',
'mesh-wifi-prep-information-element.cc',
# Not refactored
'mesh-wifi-beacon-timing-element.cc',
'mesh-wifi-perr-information-element.cc',
'mesh-wifi-rann-information-element.cc',
]
headers = bld.new_task_gen('ns3header')
headers.module = '802.11s'
headers.source = [
# Refactored
'wifi-information-element.h',
'mesh-configuration-element.h',
'mesh-wifi-preq-information-element.h',
'mesh-wifi-prep-information-element.h',
# Dirty
'mesh-wifi-rann-information-element.h',
'mesh-wifi-beacon-timing-element.h',
'mesh-wifi-perr-information-element.h',
]
# obj = bld.create_ns3_program('wifi-phy-test',
# ['core', 'simulator', 'mobility', 'node', 'wifi'])
# obj.source = 'wifi-phy-test.cc'