forked from tomlyko/ns3-dash-cmaf-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwscript
46 lines (42 loc) · 1.3 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## -*- 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',
'model/simple.cc',
'model/mpc.cc',
'model/bola.cc',
'model/liveabr.cc',
'model/stallion.cc',
'model/l2a.cc',
'model/lolp.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',
'model/simple.h',
'model/mpc.h',
'model/bola.h',
'model/liveabr.h',
'model/stallion.h',
'model/l2a.h',
'model/lolp.h',
'helper/tcp-stream-helper.h',
]
if bld.env['ENABLE_EXAMPLES']:
bld.recurse('examples')
bld.ns3_python_bindings()