Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
2 | |||||
3 | top = '..' | ||||
4 | |||||
5 | def build(bld): | ||||
6 | for app in bld.path.ant_glob('*.cpp'): | ||||
7 | bld(features=['cxx', 'cxxprogram'], | ||||
8 | target = '%s' % (str(app.change_ext('','.cpp'))), | ||||
9 | source = app, | ||||
10 | use = 'ndn-cpp-dev', | ||||
11 | includes = "../include", | ||||
12 | ) |