1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-25 22:43:14 +00:00
gnss-sdr/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/constants.c.in
Carles Fernandez a4d6800e22
Update copyright year
Applied on files changed since last release
clang-format applied
2019-07-26 12:38:20 +02:00

58 lines
1.3 KiB
C++

/* -*- c++ -*- */
/* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
*
* This file is part of GNSS-SDR.
*
* GNSS-SDR is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GNSS-SDR is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
*/
#if HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <volk_gnsssdr/constants.h>
const char*
volk_gnsssdr_prefix()
{
const char *prefix = getenv("VOLK_GNSSSDR_PREFIX");
if (prefix != NULL) return prefix;
return "@prefix@";
}
const char*
volk_gnsssdr_version()
{
return "@VERSION@";
}
const char*
volk_gnsssdr_c_compiler()
{
return "@cmake_c_compiler_version@";
}
const char*
volk_gnsssdr_compiler_flags()
{
return "@COMPILER_INFO@";
}
const char*
volk_gnsssdr_available_machines()
{
return "@available_machines@";
}