blob: a3a5e8aa700e532a816679d50f24dfdae28c1c6e [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# -*- 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,
Alexander Afanasyevd409d592014-01-28 18:36:38 -080010 use = 'ndn-cpp-dev-stlib',
11 install_prefix = None,
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080012 )