-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwscript.patch
19 lines (18 loc) · 895 Bytes
/
wscript.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- wscript.orig
+++ wscript
@@ -758,12 +758,15 @@
try:
for filename in os.listdir("scratch"):
- if filename.startswith('.') or filename == 'CVS':
+ if filename.startswith('.') or filename == 'CVS' or filename == 'helper':
continue
if os.path.isdir(os.path.join("scratch", filename)):
obj = bld.create_ns3_program(filename, all_modules)
obj.path = obj.path.find_dir('scratch').find_dir(filename)
obj.source = obj.path.ant_glob('*.cc')
+ obj.source.append('../helper/quic-network-simulator-helper.cc')
+ obj.source.append('../helper/quic-point-to-point-helper.cc')
+ obj.source.append('../helper/quic-packet.cc')
obj.target = filename
obj.name = obj.target
obj.install_path = None