9 lines
372 B
Python
9 lines
372 B
Python
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
def build(bld):
|
|
if bld.env["ENABLE_REAL_TIME"]:
|
|
obj = bld.create_ns3_program('realtime-udp-echo', ['csma', 'internet', 'applications'])
|
|
obj.source = 'realtime-udp-echo.cc'
|
|
|
|
bld.register_ns3_script('realtime-udp-echo.py', ['csma', 'internet', 'applications'])
|