blob: bc540ee9cfb6f1b7247d99f2d0d662572df470c0 [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'),
Davide Pesavento19442812018-11-23 14:00:04 -050010 headers=['../ndn-cxx/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')