blob: 383ae8c1bd7f3a835e1ee1b470ef5c84ce8256d8 [file] [log] [blame]
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
from waflib import Utils
top = '..'
def build(bld):
if bld.env['WITH_TESTS']:
unit_tests = bld.program(
target='../unit-tests',
features='cxx cxxprogram',
source=bld.path.ant_glob(['**/*.cpp']),
use='ndns-objects',
install_path=None,
)