examples: rebase

This commit is contained in:
Tommaso Pecorella
2022-01-30 11:14:47 -06:00
parent e47cb242d7
commit da09260c3e
15 changed files with 865 additions and 593 deletions

View File

@@ -23,10 +23,11 @@ def build(bld):
obj.source = 'fourth.cc'
obj = bld.create_ns3_program('fifth', ['core', 'point-to-point', 'internet', 'applications'])
obj.source = 'fifth.cc'
obj.source = [ 'fifth.cc', 'tutorial-app.cc' ]
obj = bld.create_ns3_program('sixth', ['core', 'point-to-point', 'internet', 'applications'])
obj.source = 'sixth.cc'
obj.source = [ 'sixth.cc', 'tutorial-app.cc' ]
obj = bld.create_ns3_program('seventh', ['core', 'stats', 'point-to-point', 'internet', 'applications'])
obj.source = 'seventh.cc'
obj.source = [ 'seventh.cc', 'tutorial-app.cc' ]