2011-09-07 12:18:37 -07:00
|
|
|
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
|
if not bld.env['ENABLE_EXAMPLES']:
|
|
|
|
|
return;
|
|
|
|
|
|
2013-08-08 06:40:41 -07:00
|
|
|
obj = bld.create_ns3_program('gnuplot-example', ['network', 'stats'])
|
2011-09-07 12:18:37 -07:00
|
|
|
obj.source = 'gnuplot-example.cc'
|
|
|
|
|
|
2013-08-08 06:40:41 -07:00
|
|
|
program = bld.create_ns3_program('double-probe-example', ['network', 'stats'])
|
|
|
|
|
program.source = 'double-probe-example.cc'
|
|
|
|
|
|
2014-10-15 07:06:11 -07:00
|
|
|
program = bld.create_ns3_program('time-probe-example', ['stats'])
|
|
|
|
|
program.source = 'time-probe-example.cc'
|
|
|
|
|
|
2013-08-08 06:40:41 -07:00
|
|
|
program = bld.create_ns3_program('gnuplot-aggregator-example', ['network', 'stats'])
|
|
|
|
|
program.source = 'gnuplot-aggregator-example.cc'
|
|
|
|
|
|
|
|
|
|
program = bld.create_ns3_program('gnuplot-helper-example', ['network', 'stats'])
|
|
|
|
|
program.source = 'gnuplot-helper-example.cc'
|
|
|
|
|
|
|
|
|
|
program = bld.create_ns3_program('file-aggregator-example', ['network', 'stats'])
|
|
|
|
|
program.source = 'file-aggregator-example.cc'
|
|
|
|
|
|
|
|
|
|
program = bld.create_ns3_program('file-helper-example', ['network', 'stats'])
|
|
|
|
|
program.source = 'file-helper-example.cc'
|
|
|
|
|
|
2011-09-07 12:18:37 -07:00
|
|
|
|