Alexander Afanasyev | 8b1674a | 2014-05-15 00:58:43 -0700 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | |
| 3 | from waflib import Utils |
| 4 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 5 | top = '../..' |
Alexander Afanasyev | 8b1674a | 2014-05-15 00:58:43 -0700 | [diff] [blame] | 6 | |
| 7 | def build(bld): |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 8 | 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) |