Yingdi Yu | 40cd1c3 | 2014-04-17 15:02:17 -0700 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | |
| 3 | """ |
| 4 | Copyright (c) 2014 University of Memphis |
| 5 | Regents of the University of California, |
| 6 | |
| 7 | This file is part of NLSR (Named-data Link State Routing). |
| 8 | See AUTHORS.md for complete list of NLSR authors and contributors. |
| 9 | |
| 10 | NLSR is free software: you can redistribute it and/or modify it under the terms |
| 11 | of the GNU General Public License as published by the Free Software Foundation, |
| 12 | either version 3 of the License, or (at your option) any later version. |
| 13 | |
| 14 | NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 15 | without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 16 | PURPOSE. See the GNU General Public License for more details. |
| 17 | |
| 18 | You should have received a copy of the GNU General Public License along with |
| 19 | NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 20 | """ |
| 21 | |
| 22 | top = '..' |
| 23 | |
| 24 | def build(bld): |
| 25 | # Unit tests |
| 26 | if bld.env['WITH_TESTS']: |
| 27 | unit_test_main = bld( |
| 28 | target='unit-tests-main', |
| 29 | name='unit-tests-main', |
| 30 | features='cxx', |
Vince Lehman | 27f1add | 2014-10-16 17:14:46 -0500 | [diff] [blame] | 31 | source=bld.path.ant_glob(['*.cpp', 'utility/*.cpp']), |
Yingdi Yu | 40cd1c3 | 2014-04-17 15:02:17 -0700 | [diff] [blame] | 32 | use='nlsr-objects', |
| 33 | ) |
| 34 | |
| 35 | # nsync tests |
| 36 | unit_tests_nsync = bld.program( |
| 37 | target='../unit-tests-nsync', |
| 38 | features='cxx cxxprogram', |
| 39 | source=bld.path.ant_glob(['nsync/**/*.cc']), |
| 40 | use='nsync-objects unit-tests-main', |
| 41 | includes='.', |
| 42 | install_prefix=None, |
| 43 | ) |
| 44 | |
| 45 | # nlsr tests |
| 46 | unit_tests_nlsr = bld.program( |
| 47 | target='../unit-tests-nlsr', |
| 48 | features='cxx cxxprogram', |
| 49 | source=bld.path.ant_glob(['nlsr/**/*.cpp']), |
Vince Lehman | 7b61658 | 2014-10-17 16:25:39 -0500 | [diff] [blame^] | 50 | use='nlsr-objects unit-tests-main', |
Yingdi Yu | 40cd1c3 | 2014-04-17 15:02:17 -0700 | [diff] [blame] | 51 | includes='.', |
| 52 | install_prefix=None, |
| 53 | ) |