This move prepares CoDel to become a queue disc. Building of CoDel model, tests and examples is disabled until the conversion is done.
10 lines
313 B
Python
10 lines
313 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-simple',
|
|
['network', 'internet', 'applications'])
|
|
obj.source = 'main-simple.cc'
|