blob: 575e3957cc899cd474bff06de544f1d93b7839bb [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',
Eric Newberry4164b8e2015-04-23 17:29:18 -07008 source=bld.path.ant_glob('client/*.cpp'),
Junxiao Shi11b2ae92015-03-21 11:29:19 -07009 use='core-objects',
10 )
11
12 bld.program(
13 features='cxx',
14 target='../../bin/ndnpingserver',
Eric Newberry94996d62015-05-07 13:48:46 -070015 source=bld.path.ant_glob('server/*.cpp'),
Junxiao Shi11b2ae92015-03-21 11:29:19 -070016 use='core-objects',
17 )