blob: d343b1a3f8c4718dbc0706e753b9197918e70373 [file] [log] [blame]
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
top = '..'
def build(bld):
# common objects that can be shared among all tests
bld.objects(target='tests-common',
features='pch',
source=bld.path.ant_glob('*.cpp'),
headers=['../ndn-cxx/impl/common-pch.hpp', 'boost-test.hpp'],
use='ndn-cxx BOOST')
bld.recurse('benchmarks')
bld.recurse('integration')
bld.recurse('unit')