Files
unison/src/netanim/wscript

31 lines
819 B
Plaintext
Raw Normal View History

## -*-Mode : python; py-indent-offset : 4; indent-tabs-mode : nil; coding : utf-8; -*-
2011-03-05 10:51:26 -08:00
import wutils
2012-03-30 00:27:33 -04:00
# Required NetAnim version
2014-01-15 10:12:52 -08:00
NETANIM_RELEASE_NAME = "netanim-3.105"
2012-03-30 00:27:33 -04:00
def build (bld) :
module = bld.create_ns3_module ('netanim', ['internet', 'mobility', 'wimax', 'wifi', 'csma', 'lte', 'uan', 'energy'])
module.includes = '.'
module.source = [
'model/animation-interface.cc',
'helper/animation-interface-helper.cc',
]
2012-05-19 14:56:43 -07:00
netanim_test = bld.create_ns3_module_test_library('netanim')
netanim_test.source = [
'test/netanim-test.cc',
]
2011-03-05 10:51:26 -08:00
headers = bld(features='ns3header')
headers.module = 'netanim'
headers.source = [
'model/animation-interface.h',
'helper/animation-interface-helper.h',
]
2011-03-05 10:51:26 -08:00
if (bld.env['ENABLE_EXAMPLES']) :
bld.recurse('examples')
2011-03-05 10:51:26 -08:00