11 lines
543 B
Python
11 lines
543 B
Python
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
def build(bld):
|
|
obj = bld.create_ns3_program('traffic-control',
|
|
['internet', 'point-to-point', 'applications', 'traffic-control', 'flow-monitor'])
|
|
obj.source = 'traffic-control.cc'
|
|
|
|
obj = bld.create_ns3_program('queue-discs-benchmark',
|
|
['internet', 'point-to-point', 'applications', 'internet-apps', 'traffic-control', 'flow-monitor'])
|
|
obj.source = 'queue-discs-benchmark.cc'
|