blob: 575e3957cc899cd474bff06de544f1d93b7839bb [file] [log] [blame]
# -*- 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',
)