blob: 08260b73f1d9de7a74e7617ce25696e7c7c375ba [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
5top = '..'
6
7def build(bld):
Junxiao Shi9f764b52016-08-10 02:59:48 +00008 for i in bld.path.ant_glob(['*.cpp']):
9 name = str(i)[:-len(".cpp")]
10 bld(features='cxx cxxprogram',
11 target=name,
12 source=[i],
13 use='ndn-cxx boost-tests-base BOOST',
14 includes='..',
15 install_path=None)