blob: 80c63750a72170f716a2d1ed1668ced15673c614 [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):
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -05005 bld.objects(
6 target='dissect-objects',
Junxiao Shi78c78cc2015-06-19 15:53:53 -07007 source=bld.path.ant_glob('*.cpp', excl='main.cpp'),
Davide Pesavento89d91752016-08-14 11:34:09 +02008 use='core-objects')
Junxiao Shi78c78cc2015-06-19 15:53:53 -07009
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050010 bld.program(
Junxiao Shi78c78cc2015-06-19 15:53:53 -070011 target='../../bin/ndn-dissect',
Alexander Afanasyev20c85cb2018-03-09 17:50:14 -050012 name='ndn-dissect',
Junxiao Shi78c78cc2015-06-19 15:53:53 -070013 source='main.cpp',
Davide Pesavento89d91752016-08-14 11:34:09 +020014 use='dissect-objects')