blob: a962ffab6e0c5f4456ebcfe6cde80c5fdcf87f40 [file] [log] [blame]
Alexander Afanasyevf04d4512012-02-14 18:42:47 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3def build(bld):
Alexander Afanasyev4aac5572012-08-09 10:49:55 -07004 obj = bld.create_ns3_program('ndn-simple', ['ndnSIM'])
5 obj.source = 'ndn-simple.cc'
Alexander Afanasyevf04d4512012-02-14 18:42:47 -08006
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -08007 obj = bld.create_ns3_program('ndn-grid', ['ndnSIM', 'point-to-point-layout'])
Alexander Afanasyev4aac5572012-08-09 10:49:55 -07008 obj.source = 'ndn-grid.cc'
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -08009
Alexander Afanasyev13800102012-12-25 00:30:31 -080010 obj = bld.create_ns3_program('ndn-zipf-mandelbrot', ['ndnSIM', 'point-to-point-layout'])
11 obj.source = 'ndn-zipf-mandelbrot.cc'
Shockebebcda2012-12-25 14:25:58 +080012
13
Alexander Afanasyevc3cc0b32012-12-12 18:41:20 -080014 obj = bld.create_ns3_program('ndn-simple-with-content-freshness', ['ndnSIM'])
15 obj.source = ['ndn-simple-with-content-freshness.cc',
16 'custom-apps/dumb-requester.cc']
17
Alexander Afanasyev68de7952012-12-12 18:02:29 -080018 obj = bld.create_ns3_program('ndn-simple-with-custom-app', ['ndnSIM'])
19 obj.source = ['ndn-simple-with-custom-app.cc',
Alexander Afanasyevc3cc0b32012-12-12 18:41:20 -080020 'custom-apps/custom-app.cc',
21 'custom-apps/hijacker.cc']
Alexander Afanasyev68de7952012-12-12 18:02:29 -080022
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080023 if 'topology' in bld.env['NDN_plugins']:
24 obj = bld.create_ns3_program('ndn-grid-topo-plugin', ['ndnSIM'])
25 obj.source = 'ndn-grid-topo-plugin.cc'
26
27 obj = bld.create_ns3_program('ndn-congestion-topo-plugin', ['ndnSIM'])
28 obj.source = 'ndn-congestion-topo-plugin.cc'
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080029
30 obj = bld.create_ns3_program('ndn-congestion-alt-topo-plugin', ['ndnSIM'])
31 obj.source = [
32 'custom-strategies/custom-strategy.cc',
33 'ndn-congestion-alt-topo-plugin.cc'
34 ]
Alexander Afanasyev59314802012-11-26 14:56:04 -080035
36 obj = bld.create_ns3_program('ndn-tree-tracers', ['ndnSIM'])
37 obj.source = 'ndn-tree-tracers.cc'
Alexander Afanasyevf4a03592012-12-10 16:12:34 -080038
39 obj = bld.create_ns3_program('ndn-tree-cs-tracers', ['ndnSIM'])
40 obj.source = 'ndn-tree-cs-tracers.cc'
Alexander Afanasyevdb64ff12013-01-18 16:37:31 -080041
42 obj = bld.create_ns3_program('ndn-tree-app-delay-tracer', ['ndnSIM'])
43 obj.source = 'ndn-tree-app-delay-tracer.cc'