Junxiao Shi | 11b2ae9 | 2015-03-21 11:29:19 -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/ndnping', |
Eric Newberry | 4164b8e | 2015-04-23 17:29:18 -0700 | [diff] [blame^] | 8 | source=bld.path.ant_glob('client/*.cpp'), |
Junxiao Shi | 11b2ae9 | 2015-03-21 11:29:19 -0700 | [diff] [blame] | 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 | ) |