blob: 3ecb2e080f51b2b566bde22abab0466be3aafc93 [file] [log] [blame]
Junxiao Shi2713a3b2015-06-22 16:19:05 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2top = '..'
3
4def build(bld):
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -05005 bld.program(
6 target='../unit-tests',
7 name='unit-tests',
Davide Pesaventoae37cf32019-02-20 18:19:22 -05008 source=bld.path.ant_glob(['*.cpp'] + ['%s/**/*.cpp' % tool for tool in bld.env.BUILD_TOOLS]),
9 use=['core-objects'] + ['%s-objects' % tool for tool in bld.env.BUILD_TOOLS],
Davide Pesaventoae37cf32019-02-20 18:19:22 -050010 install_path=None)