blob: c0466cd13b43dc0b00d6688957da1a4e66541275 [file] [log] [blame]
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -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 unittests = bld.program (
9 target="../integrated-tests",
10 features = "cxx cxxprogram",
11 source = bld.path.ant_glob(['**/*.cpp'],
12 excl = ['**/*-osx.cpp', '**/*-sqlite3.cpp']),
13 use = 'ndn-cpp-dev',
14 install_path = None,
15 )
16
17 if Utils.unversioned_sys_platform () == "darwin":
18 unittests.source += bld.path.ant_glob('**/*-osx.cpp')
19
20 # In case we want to make it optional later
21 unittests.source += bld.path.ant_glob('**/*-sqlite3.cpp')
22
23 if bld.env['WITH_PCH']:
24 unittests.pch = "test-all.hpp"
25