blob: 87a3f53d2e2faaba1155ea6c26b8e19218ef01d0 [file] [log] [blame]
# -*- 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)