Wentao Shang | bcbc929 | 2014-04-28 21:17:06 -0700 | [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_CXX', | ||||
Shuo Chen | ccfbe24 | 2014-04-29 23:57:51 +0800 | [diff] [blame^] | 11 | includes='..', |
Wentao Shang | bcbc929 | 2014-04-28 21:17:06 -0700 | [diff] [blame] | 12 | ) |