Files
unison/src/devices/mesh/flame/wscript
2009-06-17 16:29:13 +04:00

16 lines
431 B
Python

## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
obj = bld.create_ns3_module('flame', ['mesh'])
obj.source = [
'flame-header.cc',
'flame-rtable.cc',
'flame-protocol-mac.cc',
'flame-protocol.cc',
]
headers = bld.new_task_gen('ns3header')
headers.module = 'flame'
headers.source = [
'flame-protocol.h',
]