Files
ndn-tools/tests/wscript
T
Davide Pesavento 6b430e963a tests: delete unused code
Change-Id: I305e9d1a46b69196ab89a0de8ddb90ee9ce263ad
2022-09-18 18:55:05 -04:00

11 lines
402 B
Python

# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
top = '..'
def build(bld):
bld.program(
target='../unit-tests',
name='unit-tests',
source=bld.path.ant_glob(['*.cpp'] + ['%s/**/*.cpp' % tool for tool in bld.env.BUILD_TOOLS]),
use=['core-objects'] + ['%s-objects' % tool for tool in bld.env.BUILD_TOOLS],
install_path=None)