21 lines
558 B
Python
21 lines
558 B
Python
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
def configure(conf):
|
|
conf.sub_config('perf')
|
|
|
|
def build(bld):
|
|
test = bld.create_ns3_module('test', ['core'])
|
|
test.source = [
|
|
'csma-system-test-suite.cc',
|
|
'global-routing-test-suite.cc',
|
|
'sample-test-suite.cc',
|
|
'static-routing-test-suite.cc',
|
|
'error-model-test-suite.cc',
|
|
'mobility-test-suite.cc',
|
|
]
|
|
|
|
headers = bld.new_task_gen('ns3header')
|
|
headers.module = 'test'
|
|
headers.source = [
|
|
]
|