Yingdi Yu | 77627ab | 2015-07-21 16:13:49 -0700 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | top = '../..' |
| 3 | |
| 4 | def build(bld): |
Yingdi Yu | 77627ab | 2015-07-21 16:13:49 -0700 | [diff] [blame] | 5 | bld(features=['cxx'], |
| 6 | name="pib-objects", |
| 7 | target="pib-objects", |
| 8 | source=bld.path.ant_glob('**/*.cpp', excl=['ndn-pib.cpp']), |
| 9 | use='core-objects', |
Davide Pesavento | 89d9175 | 2016-08-14 11:34:09 +0200 | [diff] [blame] | 10 | install_path=None) |
Yingdi Yu | 77627ab | 2015-07-21 16:13:49 -0700 | [diff] [blame] | 11 | |
| 12 | bld(features=['cxx', 'cxxprogram'], |
Junxiao Shi | 523fcb1 | 2016-07-20 14:02:36 +0000 | [diff] [blame] | 13 | target='../../bin/ndn-pib', |
Yingdi Yu | 77627ab | 2015-07-21 16:13:49 -0700 | [diff] [blame] | 14 | source='ndn-pib.cpp', |
Davide Pesavento | 89d9175 | 2016-08-14 11:34:09 +0200 | [diff] [blame] | 15 | use='pib-objects') |