blob: 7ab65d1a2c5e62893a13e03abb9d5126425d5144 [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
Davide Pesavento550d8c92023-11-05 01:30:01 -04003top = '..'
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08004
5def build(bld):
Davide Pesavento394977c2020-04-25 21:40:31 -04006 # common objects that can be shared among all tests
Davide Pesavento550d8c92023-11-05 01:30:01 -04007 bld.objects(
8 target='tests-common',
9 source=bld.path.ant_glob('*.cpp'),
10 features='pch',
11 headers='tests-pch.hpp',
12 use='BOOST_TESTS ndn-cxx')
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050013
Davide Pesavento394977c2020-04-25 21:40:31 -040014 bld.recurse('benchmarks')
15 bld.recurse('integration')
Davide Pesavento7e780642018-11-24 15:51:34 -050016 bld.recurse('unit')