blob: 9a325c406daa72de17eb7d629a00a9c4cffc2894 [file] [log] [blame]
Davide Pesavento0b6e1db2025-04-19 19:23:11 -04001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2top = '../..'
3
4def build(bld):
5 bld.objects(
6 target='get-objects',
7 source=bld.path.ant_glob('*.cpp', excl='main.cpp'),
8 use='core-objects')
9
10 bld.program(
11 target=f'{top}/bin/ndnget',
12 name='ndnget',
13 source='main.cpp',
14 use='get-objects')
15
16 # backward compatibility
17 bld.symlink_as('${BINDIR}/ndncatchunks', 'ndnget')