blob: 7a40d5abd2c8207ba0d9a0a41aa6703a11bab02e [file] [log] [blame]
Yingdi Yu77627ab2015-07-21 16:13:49 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2top = '../..'
3
4def 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'],
16 target='ndn-pib',
17 source='ndn-pib.cpp',
18 use='pib-objects',
19 )