blob: 89a615ac22fcb780469e5bce78dedf06df965242 [file] [log] [blame]
Yingdi Yub20ae812014-08-15 11:20:19 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Yingdi Yub20ae812014-08-15 11:20:19 -07002
3top = '..'
4
5def build(bld):
Davide Pesavento9330c2e2023-09-14 21:38:02 -04006 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)