blob: 73158d8cd67fecfe40e9219c0a3489c110e4b60d [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-common',
install_path=None)