Junxiao Shi | 11b2ae9 | 2015-03-21 11:29:19 -0700 | [diff] [blame^] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
2 | top = '../..' | ||||
3 | |||||
4 | def build(bld): | ||||
5 | bld.program( | ||||
6 | features='cxx', | ||||
7 | target='../../bin/ndnping', | ||||
8 | source='ndn-ping.cpp', | ||||
9 | use='core-objects', | ||||
10 | ) | ||||
11 | |||||
12 | bld.program( | ||||
13 | features='cxx', | ||||
14 | target='../../bin/ndnpingserver', | ||||
15 | source='ndn-ping-server.cpp', | ||||
16 | use='core-objects', | ||||
17 | ) |