blob: 21327a9342df97a0473acb8fbf4cbb0633b83366 [file] [log] [blame]
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
top = '../..'
def build(bld):
for test in bld.path.ant_glob('*.cpp'):
name = test.change_ext('').path_from(bld.path.get_bld())
bld.program(name='test-%s' % name,
target=name,
source=[test],
use='tests-base',
install_path=None)