gnss-sdr/cmake/Modules/FindGPSTK.cmake

86 lines
2.6 KiB
CMake
Raw Normal View History

2019-02-03 18:24:44 +00:00
# Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors)
2018-12-12 00:37:37 +00:00
#
# This file is part of GNSS-SDR.
#
# SPDX-License-Identifier: GPL-3.0-or-later
2018-12-12 00:37:37 +00:00
# - Find gpstk library
# Find the native gpstk includes and library
# This module defines
# GPSTK_INCLUDE_DIR, where to find Rinex3ObsBase.hpp, etc.
# GPSTK_FOUND, If false, do not try to use GPSTK.
# GPSTK_LIBRARY, where to find the GPSTK library.
2019-11-02 23:55:48 +00:00
#
# Provides the following imported target:
# Gpstk::gpstk
#
2018-12-12 00:37:37 +00:00
if(NOT COMMAND feature_summary)
include(FeatureSummary)
endif()
2018-12-12 00:37:37 +00:00
find_path(GPSTK_INCLUDE_DIR gpstk/Rinex3ObsBase.hpp
2019-10-30 15:10:22 +00:00
PATHS /usr/include
2018-12-12 00:37:37 +00:00
/usr/local/include
/opt/local/include
${GPSTK_ROOT}/include
$ENV{GPSTK_ROOT}/include
)
set(GPSTK_NAMES ${GPSTK_NAMES} gpstk libgpstk)
2019-02-03 18:24:44 +00:00
include(GNUInstallDirs)
2018-12-12 00:37:37 +00:00
find_library(GPSTK_LIBRARY NAMES ${GPSTK_NAMES}
2019-10-30 15:10:22 +00:00
PATHS /usr/lib
2018-12-12 00:37:37 +00:00
/usr/local/lib
2019-02-03 18:24:44 +00:00
/usr/${CMAKE_INSTALL_LIBDIR}
/usr/local/${CMAKE_INSTALL_LIBDIR}
2018-12-12 00:37:37 +00:00
/opt/local/lib
2019-02-03 18:24:44 +00:00
${GPSTK_ROOT}/${CMAKE_INSTALL_LIBDIR}
$ENV{GPSTK_ROOT}/${CMAKE_INSTALL_LIBDIR}
2018-12-12 00:37:37 +00:00
)
# handle the QUIET and REQUIRED arguments and set GPSTK_FOUND to TRUE if
2018-12-12 00:37:37 +00:00
# all listed variables are TRUE
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(GPSTK DEFAULT_MSG GPSTK_LIBRARY GPSTK_INCLUDE_DIR)
if(GPSTK_FOUND)
set(OLD_PACKAGE_VERSION ${PACKAGE_VERSION})
unset(PACKAGE_VERSION)
if(EXISTS ${CMAKE_INSTALL_FULL_DATADIR}/cmake/GPSTK/GPSTKConfigVersion.cmake)
include(${CMAKE_INSTALL_FULL_DATADIR}/cmake/GPSTK/GPSTKConfigVersion.cmake)
endif()
if(PACKAGE_VERSION)
set(GPSTK_VERSION ${PACKAGE_VERSION})
endif()
set(PACKAGE_VERSION ${OLD_PACKAGE_VERSION})
endif()
if(GPSTK_FOUND AND GPSTK_VERSION)
set_package_properties(GPSTK PROPERTIES
DESCRIPTION "Library and suite of applications for satellite navigation (found: v${GPSTK_VERSION})"
)
else()
set_package_properties(GPSTK PROPERTIES
DESCRIPTION "Library and suite of applications for satellite navigation"
)
endif()
set_package_properties(GPSTK PROPERTIES
URL "https://github.com/SGL-UT/GPSTk"
)
if(GPSTK_FOUND AND NOT ENABLE_OWN_GPSTK AND NOT TARGET Gpstk::gpstk)
2019-02-03 18:24:44 +00:00
add_library(Gpstk::gpstk SHARED IMPORTED)
set_target_properties(Gpstk::gpstk PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
IMPORTED_LOCATION "${GPSTK_LIBRARY}"
INTERFACE_INCLUDE_DIRECTORIES "${GPSTK_INCLUDE_DIR};${GPSTK_INCLUDE_DIR}/gpstk"
INTERFACE_LINK_LIBRARIES "${GPSTK_LIBRARY}"
)
endif()
mark_as_advanced(GPSTK_LIBRARY GPSTK_INCLUDE_DIR)