blob: 45679a2a6e99d57a7aeceae4309413a58ae1afd5 [file] [log] [blame]
Junxiao Shi2ac79d92015-03-23 11:16:18 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2top = '../..'
3
4def build(bld):
5 bld.program(
6 features='cxx',
7 target='../../bin/ndnpeek',
8 source='ndn-peek.cpp',
Davide Pesavento89d91752016-08-14 11:34:09 +02009 use='core-objects')
Junxiao Shi2ac79d92015-03-23 11:16:18 -070010
11 bld.program(
12 features='cxx',
13 target='../../bin/ndnpoke',
14 source='ndn-poke.cpp',
Davide Pesavento89d91752016-08-14 11:34:09 +020015 use='core-objects')