Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 3 | from waflib import Utils |
| 4 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 5 | top = '..' |
| 6 | |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 7 | def configure(conf): |
| 8 | conf.find_program('sh') |
| 9 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 10 | def build(bld): |
| 11 | for app in bld.path.ant_glob('*.cpp'): |
| 12 | bld(features=['cxx', 'cxxprogram'], |
| 13 | target = '%s' % (str(app.change_ext('','.cpp'))), |
| 14 | source = app, |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 15 | use = 'ndn-cxx', |
| 16 | ) |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 17 | |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 18 | bld(features = "subst", |
| 19 | source = bld.path.ant_glob(['wrapper/*.sh']), |
| 20 | target = ['%s' % node.change_ext('', '.sh') |
| 21 | for node in bld.path.ant_glob(['wrapper/*.sh'])], |
| 22 | install_path = "${BINDIR}", |
| 23 | chmod = Utils.O755, |
| 24 | ) |