Fix dependencies in various wscripts
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
||||
|
||||
def build(bld):
|
||||
obj = bld.create_ns3_program('wifi-example-sim', ['stats'])
|
||||
obj = bld.create_ns3_program('wifi-example-sim', ['stats', 'internet', 'mobility', 'wifi'])
|
||||
obj.source = ['wifi-example-sim.cc',
|
||||
'wifi-example-apps.cc']
|
||||
|
||||
@@ -18,7 +18,7 @@ def build(bld):
|
||||
obj.source = 'tcp-star-server.cc'
|
||||
|
||||
obj = bld.create_ns3_program('star',
|
||||
['netanim', 'point-to-point', 'internet'])
|
||||
['netanim', 'point-to-point', 'applications', 'internet'])
|
||||
obj.source = 'star.cc'
|
||||
|
||||
obj = bld.create_ns3_program('tcp-bulk-send',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
||||
|
||||
def build(bld):
|
||||
obj = bld.create_ns3_module('flow-monitor', ['internet'])
|
||||
obj = bld.create_ns3_module('flow-monitor', ['internet', 'contrib'])
|
||||
obj.source = ["model/%s" % s for s in [
|
||||
'flow-monitor.cc',
|
||||
'flow-classifier.cc',
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
def build(bld):
|
||||
|
||||
module = bld.create_ns3_module('lte', ['core', 'network', 'spectrum'])
|
||||
module = bld.create_ns3_module('lte', ['core', 'network', 'spectrum', 'wimax'])
|
||||
module.source = [
|
||||
'model/lte-spectrum-phy.cc',
|
||||
'model/enb-lte-spectrum-phy.cc',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
||||
|
||||
def build(bld):
|
||||
obj = bld.create_ns3_module('mesh', ['wifi'])
|
||||
obj = bld.create_ns3_module('mesh', ['internet', 'wifi', 'bridge', 'applications'])
|
||||
|
||||
obj.source = [
|
||||
'model/mesh-information-element-vector.cc',
|
||||
|
||||
@@ -4,7 +4,7 @@ def configure(conf):
|
||||
pass
|
||||
|
||||
def build(bld):
|
||||
ns3tcp = bld.create_ns3_module('ns3tcp')
|
||||
ns3tcp = bld.create_ns3_module('ns3tcp', ['internet', 'point-to-point', 'csma', 'applications'])
|
||||
headers = bld.new_task_gen('ns3header')
|
||||
headers.module = 'ns3tcp'
|
||||
headers.source = [
|
||||
|
||||
@@ -4,7 +4,7 @@ def configure(conf):
|
||||
pass
|
||||
|
||||
def build(bld):
|
||||
ns3wifi = bld.create_ns3_module('ns3wifi')
|
||||
ns3wifi = bld.create_ns3_module('ns3wifi', ['internet', 'mobility', 'propagation', 'wifi', 'applications'])
|
||||
ns3wifi.source = [
|
||||
'wifi-interference-test-suite.cc',
|
||||
'wifi-msdu-aggregator-test-suite.cc',
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
||||
|
||||
def build(bld):
|
||||
obj = bld.create_ns3_program('uan-cw-example', ['core', 'mobility', 'uan'])
|
||||
obj = bld.create_ns3_program('uan-cw-example', ['network', 'mobility', 'contrib', 'applications', 'uan'])
|
||||
obj.source = 'uan-cw-example.cc'
|
||||
|
||||
obj = bld.create_ns3_program('uan-rc-example', ['core', 'mobility', 'uan'])
|
||||
obj = bld.create_ns3_program('uan-rc-example', ['network', 'mobility', 'contrib', 'applications', 'uan'])
|
||||
obj.source = 'uan-rc-example.cc'
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
||||
|
||||
def build(bld):
|
||||
obj = bld.create_ns3_program( 'wimax-ipv4', ['wimax', 'internet'])
|
||||
obj = bld.create_ns3_program( 'wimax-ipv4', ['wimax', 'internet', 'csma'])
|
||||
obj.source = 'wimax-ipv4.cc'
|
||||
|
||||
obj = bld.create_ns3_program( 'wimax-multicast', ['wimax', 'internet'])
|
||||
obj = bld.create_ns3_program( 'wimax-multicast', ['wimax', 'internet', 'csma'])
|
||||
obj.source = 'wimax-multicast.cc'
|
||||
|
||||
obj = bld.create_ns3_program( 'wimax-simple', ['wimax', 'internet'])
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
||||
def build(bld):
|
||||
obj = bld.create_ns3_module('wimax', ['network', 'spectrum'])
|
||||
obj = bld.create_ns3_module('wimax', ['network', 'spectrum', 'point-to-point'])
|
||||
obj.source = [
|
||||
'model/cid.cc',
|
||||
'model/cid-factory.cc',
|
||||
|
||||
Reference in New Issue
Block a user