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