Wentao Shang | bcbc929 | 2014-04-28 21:17:06 -0700 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | |
| 3 | top = '..' |
| 4 | |
| 5 | def build(bld): |
Davide Pesavento | ed2f476 | 2019-01-25 00:40:46 -0500 | [diff] [blame] | 6 | for tool in bld.path.ant_glob('*.cpp'): |
| 7 | name = tool.change_ext('').path_from(bld.path.get_bld()) |
| 8 | bld.program(name=name, |
Davide Pesavento | 399f4d9 | 2023-09-17 14:03:51 -0400 | [diff] [blame] | 9 | target=f'{top}/bin/{name}', |
Davide Pesavento | ed2f476 | 2019-01-25 00:40:46 -0500 | [diff] [blame] | 10 | source=[tool], |
Davide Pesavento | 399f4d9 | 2023-09-17 14:03:51 -0400 | [diff] [blame] | 11 | use='BOOST_TOOLS repo-objects') |