blob: 3c1e5326f14b9793f3102baac537acf8fd1f5fd2 [file] [log] [blame]
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
top = '../..'
def build(bld):
for test in bld.path.ant_glob('*.cpp'):
name = test.change_ext('').path_from(bld.path.get_bld())
bld.program(name=f'test-{name}',
target=name,
source=[test],
use='BOOST_TESTS ndn-cxx',
install_path=None)