blob: 41f1ea8d46689efaca84c45c8355a8252e1c3d1b [file] [log] [blame]
Wentao Shangbcbc9292014-04-28 21:17:06 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3top = '..'
4
5def 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',
11 )