# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- | |
top = '..' | |
def build(bld): | |
unittests = bld.program ( | |
target="unit-tests", | |
features = "cxx cxxprogram", | |
source = bld.path.ant_glob(['**/*.cpp']), | |
use = 'ndn-cpp-dev', | |
install_prefix = None, | |
) |