blob: 0301eebd5ea3dba5cd127c2d75863645f04173f4 [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='ndn-ping-server.cpp',
use='core-objects',
)