6b430e963a
Change-Id: I305e9d1a46b69196ab89a0de8ddb90ee9ce263ad
11 lines
402 B
Python
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)
|