2019-02-03 18:24:44 +00:00
|
|
|
# Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors)
|
2018-12-14 17:59:36 +00:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2019-02-03 18:24:44 +00:00
|
|
|
#
|
|
|
|
# Provides the following imported target:
|
|
|
|
# Volkgnsssdr::volkgnsssdr
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2018-12-14 17:59:36 +00:00
|
|
|
########################################################################
|
|
|
|
# Find VOLK (Vector-Optimized Library of Kernels) GNSS-SDR library
|
|
|
|
########################################################################
|
|
|
|
|
|
|
|
include(FindPkgConfig)
|
|
|
|
pkg_check_modules(PC_VOLK_GNSSSDR volk_gnsssdr)
|
|
|
|
|
|
|
|
find_path(VOLK_GNSSSDR_INCLUDE_DIRS
|
|
|
|
NAMES volk_gnsssdr/volk_gnsssdr.h
|
|
|
|
HINTS $ENV{VOLK_GNSSSDR_DIR}/include
|
|
|
|
${PC_VOLK_GNSSSDR_INCLUDEDIR}
|
|
|
|
PATHS /usr/local/include
|
|
|
|
/usr/include
|
|
|
|
${GNURADIO_INSTALL_PREFIX}/include
|
|
|
|
${VOLKGNSSSDR_ROOT}/include
|
|
|
|
$ENV{VOLKGNSSSDR_ROOT}/include
|
|
|
|
)
|
|
|
|
|
|
|
|
find_library(VOLK_GNSSSDR_LIBRARIES
|
|
|
|
NAMES volk_gnsssdr
|
|
|
|
HINTS $ENV{VOLK_GNSSSDR_DIR}/lib
|
|
|
|
${PC_VOLK_GNSSSDR_LIBDIR}
|
|
|
|
PATHS /usr/local/lib
|
|
|
|
/usr/local/lib64
|
|
|
|
/usr/lib
|
|
|
|
/usr/lib64
|
|
|
|
${GNURADIO_INSTALL_PREFIX}/lib
|
|
|
|
${VOLKGNSSSDR_ROOT}/lib
|
|
|
|
$ENV{VOLKGNSSSDR_ROOT}/lib
|
|
|
|
${VOLKGNSSSDR_ROOT}/lib64
|
|
|
|
$ENV{VOLKGNSSSDR_ROOT}/lib64
|
|
|
|
)
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(VOLKGNSSSDR DEFAULT_MSG VOLK_GNSSSDR_LIBRARIES VOLK_GNSSSDR_INCLUDE_DIRS)
|
|
|
|
mark_as_advanced(VOLK_GNSSSDR_LIBRARIES VOLK_GNSSSDR_INCLUDE_DIRS)
|
2019-02-03 18:24:44 +00:00
|
|
|
|
|
|
|
|
2019-02-08 14:16:39 +00:00
|
|
|
if(VOLKGNSSSDR_FOUND AND NOT TARGET Volkgnsssdr::volkgnsssdr)
|
2019-02-03 18:24:44 +00:00
|
|
|
add_library(Volkgnsssdr::volkgnsssdr SHARED IMPORTED)
|
|
|
|
set_target_properties(Volkgnsssdr::volkgnsssdr PROPERTIES
|
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
|
|
|
|
IMPORTED_LOCATION "${VOLK_GNSSSDR_LIBRARIES}"
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${VOLK_GNSSSDR_INCLUDE_DIRS}"
|
|
|
|
INTERFACE_LINK_LIBRARIES "${VOLK_GNSSSDR_LIBRARIES}"
|
|
|
|
)
|
|
|
|
endif()
|