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): |
| 5 | |
| 6 | bld(features=['cxx'], |
| 7 | name="pib-objects", |
| 8 | target="pib-objects", |
| 9 | source=bld.path.ant_glob('**/*.cpp', excl=['ndn-pib.cpp']), |
| 10 | use='core-objects', |
| 11 | install_path=None, |
| 12 | ) |
| 13 | |
| 14 | |
| 15 | bld(features=['cxx', 'cxxprogram'], |
Junxiao Shi | 523fcb1 | 2016-07-20 14:02:36 +0000 | [diff] [blame] | 16 | target='../../bin/ndn-pib', |
Yingdi Yu | 77627ab | 2015-07-21 16:13:49 -0700 | [diff] [blame] | 17 | source='ndn-pib.cpp', |
| 18 | use='pib-objects', |
| 19 | ) |