blob: d343b1a3f8c4718dbc0706e753b9197918e70373 [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
3top = '..'
4
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',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05008 features='pch',
Davide Pesavento7e780642018-11-24 15:51:34 -05009 source=bld.path.ant_glob('*.cpp'),
Junxiao Shid1fc9a72018-12-12 16:35:34 +000010 headers=['../ndn-cxx/impl/common-pch.hpp', 'boost-test.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')