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