blob: 99b874e85ccdce46bfffa708c1b6d7fa802dc125 [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',
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 )