ns-3-leo/examples/wscript
2020-08-17 11:53:09 +02:00

10 lines
337 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('leo-circular-orbit-trace',
['core', 'leo', 'mobility'])
obj.source = 'leo-circular-orbit-tracing-example.cc'