blob: 31127c97bef790e0248745b3e1d4743920bd8971 [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 Afanasyevfd0c41c2012-06-11 22:15:49 -07009
10 obj = bld.create_ns3_program('trie', ['ndnSIM'])
11 obj.source = 'trie.cc'
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080012
13 if 'topology' in bld.env['NDN_plugins']:
14 obj = bld.create_ns3_program('ndn-grid-topo-plugin', ['ndnSIM'])
15 obj.source = 'ndn-grid-topo-plugin.cc'
16
17 obj = bld.create_ns3_program('ndn-congestion-topo-plugin', ['ndnSIM'])
18 obj.source = 'ndn-congestion-topo-plugin.cc'