blob: 406537b012f9ad428533be7855610fab48430547 [file] [log] [blame]
Junxiao Shi11b2ae92015-03-21 11:29:19 -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/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 )