blob: 3e82b604e3bbf317d31ba5e72633a2ecde27dc1f [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'],
Junxiao Shi523fcb12016-07-20 14:02:36 +000016 target='../../bin/ndn-pib',
Yingdi Yu77627ab2015-07-21 16:13:49 -070017 source='ndn-pib.cpp',
18 use='pib-objects',
19 )