blob: 8e269f080be3da03892d59e1105660925c1a59fd [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 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')