blob: 7ab65d1a2c5e62893a13e03abb9d5126425d5144 [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',
source=bld.path.ant_glob('*.cpp'),
features='pch',
headers='tests-pch.hpp',
use='BOOST_TESTS ndn-cxx')
bld.recurse('benchmarks')
bld.recurse('integration')
bld.recurse('unit')