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