blob: 4fb6050cb8aa3bf3fc6601f49377759c0c6bd841 [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',
Shuo Chenccfbe242014-04-29 23:57:51 +080011 includes='..',
Wentao Shangbcbc9292014-04-28 21:17:06 -070012 )