| # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- | |
| top = '../..' | |
| def build(bld): | |
| bld.program( | |
| features='cxx', | |
| target='../../bin/ndnping', | |
| source=bld.path.ant_glob('client/*.cpp'), | |
| use='core-objects', | |
| ) | |
| bld.program( | |
| features='cxx', | |
| target='../../bin/ndnpingserver', | |
| source=bld.path.ant_glob('server/*.cpp'), | |
| use='core-objects', | |
| ) |