Junxiao Shi | 2ac79d9 | 2015-03-23 11:16:18 -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/ndnpeek', | ||||
8 | source='ndn-peek.cpp', | ||||
9 | use='core-objects', | ||||
10 | ) | ||||
11 | |||||
12 | bld.program( | ||||
13 | features='cxx', | ||||
14 | target='../../bin/ndnpoke', | ||||
15 | source='ndn-poke.cpp', | ||||
16 | use='core-objects', | ||||
17 | ) |