blob: 69aa2bb9996d74ea02f2fc08747f8f4c7474afcc [file] [log] [blame]
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -04001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3"""
4Copyright (c) 2014 Regents of the University of California,
5 Arizona Board of Regents,
6 Colorado State University,
7 University Pierre & Marie Curie, Sorbonne University,
8 Washington University in St. Louis,
9 Beijing Institute of Technology
10
11This file is part of NFD (Named Data Networking Forwarding Daemon).
12See AUTHORS.md for complete list of NFD authors and contributors.
13
14NFD is free software: you can redistribute it and/or modify it under the terms
15of the GNU General Public License as published by the Free Software Foundation,
16either version 3 of the License, or (at your option) any later version.
17
18NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20PURPOSE. See the GNU General Public License for more details.
21
22You should have received a copy of the GNU General Public License along with
23NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24"""
25
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026top = '../..'
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040027
28def build(bld):
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070029 bld.program(target="../../cs-smoketest",
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040030 source="cs-smoketest.cpp",
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070031 use='daemon-objects',
Alexander Afanasyev9a0c2d02014-04-27 20:26:26 -070032 install_path=None,
33 )