blob: 383ae8c1bd7f3a835e1ee1b470ef5c84ce8256d8 [file] [log] [blame]
Alexander Afanasyev4ffcff22014-09-02 15:39:20 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3from waflib import Utils
4
5top = '..'
6
7def build(bld):
8 if bld.env['WITH_TESTS']:
9 unit_tests = bld.program(
10 target='../unit-tests',
11 features='cxx cxxprogram',
12 source=bld.path.ant_glob(['**/*.cpp']),
13 use='ndns-objects',
14 install_path=None,
15 )