mirror of
https://gitlab.ibr.cs.tu-bs.de/tschuber/ns-3-leo.git
synced 2025-06-08 18:13:57 +02:00
17 lines
660 B
Python
17 lines
660 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',
|
|
['core', 'leo', 'mobility'])
|
|
obj.source = 'leo-circular-orbit-tracing-example.cc'
|
|
|
|
obj = bld.create_ns3_program('leo-delay',
|
|
['core', 'leo', 'mobility', 'aodv'])
|
|
obj.source = 'leo-delay-tracing-example.cc'
|
|
|
|
obj = bld.create_ns3_program('leo-bulk-send',
|
|
['core', 'leo', 'mobility', 'aodv'])
|
|
obj.source = 'leo-bulk-send-example.cc'
|