2018-04-29 10:02:40 +00:00
|
|
|
# Copyright (C) 2011-2018 (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
|
2018-05-13 20:49:11 +00:00
|
|
|
# along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
2018-04-29 10:02:40 +00:00
|
|
|
|
2012-12-24 02:33:50 +00:00
|
|
|
# - Find gpstk library
|
|
|
|
# Find the native gpstk includes and library
|
|
|
|
# This module defines
|
2016-12-30 12:36:28 +00:00
|
|
|
# GPSTK_INCLUDE_DIR, where to find Rinex3ObsBase.hpp, etc.
|
2012-12-24 02:33:50 +00:00
|
|
|
# GPSTK_LIBRARIES, libraries to link against to use GPSTK.
|
|
|
|
# GPSTK_FOUND, If false, do not try to use GPSTK.
|
|
|
|
# also defined, but not for general use are
|
|
|
|
# GPSTK_LIBRARY, where to find the GPSTK library.
|
|
|
|
|
2018-10-15 09:31:56 +00:00
|
|
|
FIND_PATH(GPSTK_INCLUDE_DIR gpstk/Rinex3ObsBase.hpp
|
|
|
|
HINTS /usr/include
|
|
|
|
/usr/local/include
|
|
|
|
/opt/local/include )
|
2012-12-24 02:33:50 +00:00
|
|
|
|
|
|
|
SET(GPSTK_NAMES ${GPSTK_NAMES} gpstk libgpstk)
|
2017-11-11 13:04:57 +00:00
|
|
|
FIND_LIBRARY(GPSTK_LIBRARY NAMES ${GPSTK_NAMES}
|
|
|
|
HINTS /usr/lib
|
|
|
|
/usr/local/lib
|
|
|
|
/opt/local/lib )
|
2012-12-24 02:33:50 +00:00
|
|
|
|
|
|
|
# handle the QUIETLY and REQUIRED arguments and set GPSTK_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
|
|
|
INCLUDE(FindPackageHandleStandardArgs)
|
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GPSTK DEFAULT_MSG GPSTK_LIBRARY GPSTK_INCLUDE_DIR)
|
|
|
|
|
|
|
|
IF(GPSTK_FOUND)
|
|
|
|
SET( GPSTK_LIBRARIES ${GPSTK_LIBRARY} )
|
|
|
|
ENDIF(GPSTK_FOUND)
|
|
|
|
|
|
|
|
MARK_AS_ADVANCED(GPSTK_INCLUDE_DIR GPSTK_LIBRARY)
|