This move prepares RED to become a queue disc. Building of RED model, tests and examples is disabled until the conversion is done.
15 lines
488 B
Python
15 lines
488 B
Python
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
def build(bld):
|
|
if not bld.env['ENABLE_EXAMPLES']:
|
|
return;
|
|
|
|
obj = bld.create_ns3_program('main-packet-header', ['network'])
|
|
obj.source = 'main-packet-header.cc'
|
|
|
|
obj = bld.create_ns3_program('main-packet-tag', ['network'])
|
|
obj.source = 'main-packet-tag.cc'
|
|
|
|
obj = bld.create_ns3_program('packet-socket-apps', ['core', 'network'])
|
|
obj.source = 'packet-socket-apps.cc'
|