2009-10-06 19:34:29 -07:00
|
|
|
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
|
|
|
|
|
|
def build(bld):
|
2010-11-08 11:38:12 -08:00
|
|
|
obj = bld.create_ns3_program('hello-simulator', ['core'])
|
2009-10-06 19:34:29 -07:00
|
|
|
obj.source = 'hello-simulator.cc'
|
|
|
|
|
|
2011-03-07 16:59:09 -08:00
|
|
|
obj = bld.create_ns3_program('first', ['core', 'point-to-point', 'internet', 'applications'])
|
2009-10-06 19:34:29 -07:00
|
|
|
obj.source = 'first.cc'
|
2011-04-28 09:10:29 -07:00
|
|
|
|
|
|
|
|
bld.register_ns3_script('first.py', ['core', 'point-to-point', 'internet', 'applications'])
|
2009-10-06 19:34:29 -07:00
|
|
|
|
2011-03-18 13:21:02 -07:00
|
|
|
obj = bld.create_ns3_program('second', ['core', 'point-to-point', 'csma', 'internet', 'applications'])
|
2009-10-06 19:34:29 -07:00
|
|
|
obj.source = 'second.cc'
|
|
|
|
|
|
2011-02-25 10:32:35 -08:00
|
|
|
obj = bld.create_ns3_program('third', ['core', 'point-to-point', 'csma', 'wifi', 'internet'])
|
2009-10-06 19:34:29 -07:00
|
|
|
obj.source = 'third.cc'
|
2009-10-08 00:16:55 -07:00
|
|
|
|
|
|
|
|
obj = bld.create_ns3_program('fourth', ['core'])
|
|
|
|
|
obj.source = 'fourth.cc'
|
2009-10-19 16:44:41 -07:00
|
|
|
|
2011-03-07 16:59:09 -08:00
|
|
|
obj = bld.create_ns3_program('fifth', ['core', 'point-to-point', 'internet', 'applications'])
|
2009-10-19 16:44:41 -07:00
|
|
|
obj.source = 'fifth.cc'
|
2010-01-25 16:09:07 -08:00
|
|
|
|
2011-03-07 16:59:09 -08:00
|
|
|
obj = bld.create_ns3_program('sixth', ['core', 'point-to-point', 'internet', 'applications'])
|
2010-01-25 16:09:07 -08:00
|
|
|
obj.source = 'sixth.cc'
|