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', |
Davide Pesavento | 89d9175 | 2016-08-14 11:34:09 +0200 | [diff] [blame^] | 9 | use='core-objects') |
Junxiao Shi | 2ac79d9 | 2015-03-23 11:16:18 -0700 | [diff] [blame] | 10 | |
| 11 | bld.program( |
| 12 | features='cxx', |
| 13 | target='../../bin/ndnpoke', |
| 14 | source='ndn-poke.cpp', |
Davide Pesavento | 89d9175 | 2016-08-14 11:34:09 +0200 | [diff] [blame^] | 15 | use='core-objects') |