blob: 5d044222fbff7b68e8b7bc502c38cfe9b8c081cb [file] [log] [blame]
Alexander Afanasyev8b1674a2014-05-15 00:58:43 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3from waflib import Utils
4
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05005top = '../..'
Alexander Afanasyev8b1674a2014-05-15 00:58:43 -07006
7def build(bld):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05008 for test in bld.path.ant_glob('*.cpp'):
9 name = test.change_ext('').path_from(bld.path.get_bld())
10 bld.program(target=name,
11 source=[test],
12 use='ndn-cxx tests-base BOOST',
13 install_path=None)