blob: 0a9fcbfd289bb19b4531805268cd6d60fc15d740 [file] [log] [blame]
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
top = '..'
def build(bld):
if bld.env['WITH_TOOLS']:
for app in bld.path.ant_glob('*.cpp'):
bld(features=['cxx', 'cxxprogram'],
target='%s' % (str(app.change_ext('', '.cpp'))),
source=app,
use=["NDN_CXX", "ndn-repo-objects"],
includes="../src",
)