Yingdi Yu | b20ae81 | 2014-08-15 11:20:19 -0700 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
Yingdi Yu | b20ae81 | 2014-08-15 11:20:19 -0700 | [diff] [blame] | 2 | |
3 | top = '..' | ||||
4 | |||||
5 | def build(bld): | ||||
Davide Pesavento | 9330c2e | 2023-09-14 21:38:02 -0400 | [diff] [blame] | 6 | bld.program( |
7 | target=f'{top}/unit-tests', | ||||
8 | name='unit-tests', | ||||
9 | source=bld.path.ant_glob('**/*.cpp'), | ||||
10 | use='BOOST_TESTS ChronoSync', | ||||
11 | includes=top, | ||||
12 | install_path=None) |