blob: 7db133e61c4f6626fb37d51700ab92572ed6c53f [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 Afanasyev766cea72014-04-24 19:16:42 -070010 use = 'ndn-cxx',
Alexander Afanasyev59efe102014-01-29 15:56:30 -080011 install_path = None,
Alexander Afanasyev766cea72014-04-24 19:16:42 -070012 )