blob: 413652f71cc25d3f716aadb5ff79e993e1a135cf [file] [log] [blame]
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
top = '../..'
def build(bld):
bld.objects(
target='dissect-objects',
source=bld.path.ant_glob('*.cpp', excl='main.cpp'),
use='core-objects')
bld.program(
target=f'{top}/bin/ndndissect',
name='ndndissect',
source='main.cpp',
use='dissect-objects')
# backward compatibility
bld.symlink_as('${BINDIR}/ndn-dissect', 'ndndissect')