blob: 87a3f53d2e2faaba1155ea6c26b8e19218ef01d0 [file] [log] [blame]
Alexander Afanasyev8b1674a2014-05-15 00:58:43 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05003top = '../..'
Alexander Afanasyev8b1674a2014-05-15 00:58:43 -07004
5def build(bld):
Davide Pesavento31bca202024-02-25 23:10:26 -05006 for file in bld.path.ant_glob('*.cpp'):
7 name = file.change_ext('').path_from(bld.path.get_bld())
8 bld.program(
9 name=f'bench-{name}',
10 target=name,
11 source=[file],
12 use='BOOST_TESTS ndn-cxx',
13 install_path=None)