35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
import sys
|
|
|
|
def configure(conf):
|
|
conf.sub_config('perf')
|
|
conf.sub_config('ns3tcp')
|
|
conf.sub_config('ns3wifi')
|
|
|
|
# Add the test module to the list of enabled modules that should
|
|
# not be built if this is a static build on Darwin. They don't
|
|
# work there for the test module, and this is probably because the
|
|
# test module has no source files.
|
|
if conf.env['ENABLE_STATIC_NS3'] and sys.platform == 'darwin':
|
|
conf.env['MODULES_NOT_BUILT'].append('test')
|
|
|
|
def build(bld):
|
|
# Don't do anything for this module if it should not be built.
|
|
if 'test' in bld.env['MODULES_NOT_BUILT']:
|
|
return
|
|
|
|
test = bld.create_ns3_module('test', ['internet', 'mobility', 'applications', 'csma', 'bridge', 'config-store', 'tools', 'point-to-point', 'csma-layout', 'flow-monitor'])
|
|
headers = bld.new_task_gen('ns3header')
|
|
headers.module = 'test'
|
|
|
|
test_test = bld.create_ns3_module_test_library('test')
|
|
test_test.source = [
|
|
'csma-system-test-suite.cc',
|
|
'global-routing-test-suite.cc',
|
|
'static-routing-test-suite.cc',
|
|
'error-model-test-suite.cc',
|
|
'mobility-test-suite.cc',
|
|
]
|
|
|