blob: decba8fddee71b18d202da22a04e1661fc524d32 [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 Afanasyev4aac5572012-08-09 10:49:55 -07007 obj = bld.create_ns3_program('ndn-grid', ['ndnSIM', 'point-to-point', 'point-to-point-layout'])
8 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'