blob: 706697a5072d4f61746383ac697c760516edf492 [file] [log] [blame]
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
from waflib import Utils
top = '..'
def build(bld):
test_main = bld(
target='tests-main',
name='tests-main',
features='cxx',
source=bld.path.ant_glob(['main.cpp']),
use='ndn-group-encrypt',
)
unit_test = bld.program(
target="../unit-tests",
source=bld.path.ant_glob(['unit-tests/**/*.cpp']),
features=['cxx', 'cxxprogram'],
use='ndn-group-encrypt tests-main',
includes=['.'],
install_path=None,
)