9 lines
288 B
Python
9 lines
288 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-attribute-value', ['network', 'point-to-point'])
|
|
obj.source = 'main-attribute-value.cc'
|