blob: 0a9fcbfd289bb19b4531805268cd6d60fc15d740 [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):
Shuo Chenca329182014-03-19 18:05:18 -07006 if bld.env['WITH_TOOLS']:
7 for app in bld.path.ant_glob('*.cpp'):
8 bld(features=['cxx', 'cxxprogram'],
9 target='%s' % (str(app.change_ext('', '.cpp'))),
10 source=app,
weijia yuan82cf9142018-10-21 12:25:02 -070011 use=["NDN_CXX", "ndn-repo-objects"],
Weiqi Shi9a223892014-08-24 18:42:58 -070012 includes="../src",
Shuo Chenca329182014-03-19 18:05:18 -070013 )