forked from haraldott/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wscript
32 lines (28 loc) · 973 Bytes
/
wscript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
module = bld.create_ns3_module('dash', ['internet','config-store','stats'])
module.includes = '.'
module.source = [
'model/tcp-stream-client.cc',
'model/tcp-stream-server.cc',
'model/tcp-stream-adaptation-algorithm.cc',
'model/festive.cc',
'model/panda.cc',
'model/tobasco2.cc',
'helper/tcp-stream-helper.cc',
]
headers = bld(features='ns3header')
headers.module = 'dash'
headers.source = [
'model/tcp-stream-client.h',
'model/tcp-stream-server.h',
'model/tcp-stream-interface.h',
'model/tcp-stream-adaptation-algorithm.h',
'model/festive.h',
'model/panda.h',
'model/tobasco2.h',
'helper/tcp-stream-helper.h',
]
if bld.env['ENABLE_EXAMPLES']:
bld.recurse('examples')
bld.ns3_python_bindings()