blob: 8e269f080be3da03892d59e1105660925c1a59fd [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 Pesavento74daf742018-11-23 18:14:13 -05006 # common objects that can be shared between unit and integrated 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
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080013 bld.recurse('integrated')
Davide Pesavento7e780642018-11-24 15:51:34 -050014 bld.recurse('unit')