blob: 070ece2823ccfba24dceab80066c66a6580c13e7 [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='.',
Junxiao Shie5adbfd2015-06-18 14:42:06 -070010 use='core-objects',
11 )
Junxiao Shi78c78cc2015-06-19 15:53:53 -070012
13 bld(features='cxx cxxprogram',
14 target='../../bin/ndn-dissect',
15 source='main.cpp',
16 use='dissect-objects',
17 )