blob: 2e680c8dec03ee3ed25d5c5503987a0c55b90df5 [file] [log] [blame]
Yingdi Yu40cd1c32014-04-17 15:02:17 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Yingdi Yu40cd1c32014-04-17 15:02:17 -07002"""
Davide Pesavento5849ee72023-11-12 20:00:21 -05003Copyright (c) 2014-2023, The University of Memphis
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -05004 Regents of the University of California
Yingdi Yu40cd1c32014-04-17 15:02:17 -07005
6This file is part of NLSR (Named-data Link State Routing).
7See AUTHORS.md for complete list of NLSR authors and contributors.
8
9NLSR is free software: you can redistribute it and/or modify it under the terms
10of the GNU General Public License as published by the Free Software Foundation,
11either version 3 of the License, or (at your option) any later version.
12
13NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15PURPOSE. See the GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License along with
18NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
19"""
20
21top = '..'
22
23def build(bld):
Davide Pesavento5849ee72023-11-12 20:00:21 -050024 bld.program(
25 target=f'{top}/unit-tests-nlsr',
26 name='unit-tests-nlsr',
27 source=bld.path.ant_glob('**/*.cpp'),
28 use='BOOST_TESTS nlsr-objects',
29 includes=top,
30 install_path=None)