blob: 373f6a43713f1a352471178653d6fda2351bbb39 [file] [log] [blame]
Junxiao Shie5adbfd2015-06-18 14:42:06 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2top = '../..'
3
4def build(bld):
Junxiao Shi78c78cc2015-06-19 15:53:53 -07005 bld(features='cxx',
6 name='dissect-objects',
7 source=bld.path.ant_glob('*.cpp', excl='main.cpp'),
8 includes='.',
9 export_includes='.',
Davide Pesavento89d91752016-08-14 11:34:09 +020010 use='core-objects')
Junxiao Shi78c78cc2015-06-19 15:53:53 -070011
12 bld(features='cxx cxxprogram',
13 target='../../bin/ndn-dissect',
14 source='main.cpp',
Davide Pesavento89d91752016-08-14 11:34:09 +020015 use='dissect-objects')