forked from guibaraujo/ndn4ivc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
wscript
58 lines (51 loc) · 1.73 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
47
48
49
50
51
52
53
54
55
56
57
58
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
# def options(opt):
# pass
# def configure(conf):
# conf.check_nonfatal(header_name='stdint.h', define_name='HAVE_STDINT_H')
def build(bld):
module = bld.create_ns3_module('ndn4ivc', [
'core',
'network',
'mobility',
'wave',
'ndnSIM',
'traci',])
module.source = [
'helper/wifi-setup-helper.cc',
'helper/sumoMap-graph.cc',
'model/beacon.cc',
'model/neighbor-info.cc',
'model/tms-consumer.cc',
'model/tms-provider.cc',
'model/multicast-vanet-strategy.cc',
'model/localhop-strategy.cc',
'model/ndn-demo.cc',
'model/its-car.cc',
'model/its-rsu.cc'
]
headers = bld(features='ns3header')
headers.module = 'ndn4ivc'
headers.source = [
'helper/wifi-setup-helper.h',
'helper/wifi-adhoc-helper.h',
'helper/sumoMap-graph.h',
'model/beacon-app.h',
'model/beacon.h',
'model/neighbor-info.h',
'model/tms-consumer-app.h',
'model/tms-consumer.h',
'model/tms-provider-app.h',
'model/tms-provider.h',
'model/multicast-vanet-strategy.h',
'model/localhop-strategy.h',
'model/ndn-demo.h',
'model/ndn-demo-app.h',
'model/its-car.h',
'model/its-car-app.h',
'model/its-rsu.h',
'model/its-rsu-app.h'
]
if bld.env.ENABLE_EXAMPLES:
bld.recurse('examples')
# bld.ns3_python_bindings()