blob: 8fe7229ef9ba94f7f65fba33faf02cc467c19bc7 [file] [log] [blame]
Wentao Shangbcbc9292014-04-28 21:17:06 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3top = '..'
4
5def build(bld):
Davide Pesaventoed2f4762019-01-25 00:40:46 -05006 for tool in bld.path.ant_glob('*.cpp'):
7 name = tool.change_ext('').path_from(bld.path.get_bld())
8 bld.program(name=name,
9 target='../bin/%s' % name,
10 source=[tool],
11 use='repo-objects')