# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- | |
top = '..' | |
def build(bld): | |
# common objects that can be shared between unit and integrated 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('integrated') | |
bld.recurse('unit') |