blob: d7401ca11af3995ede190a7725301c224d21a639 [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 Pesavento25d4f1c2020-04-29 23:31:04 -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 Pesavento7e780642018-11-24 15:51:34 -05007 bld.objects(target='tests-common',
Davide Pesavento7e780642018-11-24 15:51:34 -05008 source=bld.path.ant_glob('*.cpp'),
Davide Pesavento25d4f1c2020-04-29 23:31:04 -04009 features='pch',
10 headers='tests-pch.hpp',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050011 use='ndn-cxx BOOST')
12
Davide Pesavento394977c2020-04-25 21:40:31 -040013 bld.recurse('benchmarks')
14 bld.recurse('integration')
Davide Pesavento7e780642018-11-24 15:51:34 -050015 bld.recurse('unit')