blob: eaa35cc32a038ebbe3c8ec5a450cec2e57142e68 [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
Yingdi Yu8d7468f2014-02-21 14:49:45 -08005def configure(conf):
6 conf.find_program('sh')
7
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08008def build(bld):
9 for app in bld.path.ant_glob('*.cpp'):
10 bld(features=['cxx', 'cxxprogram'],
11 target = '%s' % (str(app.change_ext('','.cpp'))),
12 source = app,
Alexander Afanasyev766cea72014-04-24 19:16:42 -070013 use = 'ndn-cxx',
14 )
Yingdi Yu8d7468f2014-02-21 14:49:45 -080015
16 bld (features = "subst",
17 source = bld.path.ant_glob(['wrapper/*.sh']),
Alexander Afanasyev766cea72014-04-24 19:16:42 -070018 target = ['%s' % node.change_ext('', '.sh')
19 for node in bld.path.ant_glob(['wrapper/*.sh'])],
Yingdi Yu8d7468f2014-02-21 14:49:45 -080020 install_path = "${BINDIR}",
21 chmod = 0755,
22 )