blob: 5d044222fbff7b68e8b7bc502c38cfe9b8c081cb [file] [log] [blame]
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
from waflib import Utils
top = '../..'
def build(bld):
for test in bld.path.ant_glob('*.cpp'):
name = test.change_ext('').path_from(bld.path.get_bld())
bld.program(target=name,
source=[test],
use='ndn-cxx tests-base BOOST',
install_path=None)