2018-12-14 17:59:36 +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
|
|
|
|
# along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
include(FindPkgConfig)
|
|
|
|
pkg_check_modules(PC_TELEORBIT teleorbit)
|
|
|
|
|
|
|
|
find_path(TELEORBIT_INCLUDE_DIRS
|
|
|
|
NAMES teleorbit/api.h
|
|
|
|
HINTS $ENV{TELEORBIT_DIR}/include
|
|
|
|
${PC_TELEORBIT_INCLUDEDIR}
|
|
|
|
PATHS ${CMAKE_INSTALL_PREFIX}/include
|
|
|
|
/usr/local/include
|
|
|
|
/usr/include
|
|
|
|
${TELEORBIT_ROOT}/include
|
|
|
|
$ENV{TELEORBIT_ROOT}/include
|
|
|
|
)
|
|
|
|
|
|
|
|
find_library(TELEORBIT_LIBRARIES
|
|
|
|
NAMES gnuradio-teleorbit
|
|
|
|
HINTS $ENV{TELEORBIT_DIR}/lib
|
|
|
|
${PC_TELEORBIT_LIBDIR}
|
|
|
|
PATHS ${CMAKE_INSTALL_PREFIX}/lib
|
|
|
|
${CMAKE_INSTALL_PREFIX}/lib64
|
|
|
|
/usr/local/lib
|
|
|
|
/usr/local/lib64
|
|
|
|
/usr/lib
|
|
|
|
/usr/lib64
|
|
|
|
${TELEORBIT_ROOT}/lib
|
|
|
|
$ENV{TELEORBIT_ROOT}/lib
|
|
|
|
${TELEORBIT_ROOT}/lib64
|
|
|
|
$ENV{TELEORBIT_ROOT}/lib64
|
|
|
|
)
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(TELEORBIT DEFAULT_MSG TELEORBIT_LIBRARIES TELEORBIT_INCLUDE_DIRS)
|
2019-02-04 17:17:35 +00:00
|
|
|
|
2019-02-05 12:28:58 +00:00
|
|
|
if(TELEORBIT_FOUND AND NOT TARGET Gnuradio::teleorbit)
|
|
|
|
add_library(Gnuradio::teleorbit SHARED IMPORTED)
|
|
|
|
set_target_properties(Gnuradio::teleorbit PROPERTIES
|
2019-02-04 17:17:35 +00:00
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
|
|
|
|
IMPORTED_LOCATION "${TELEORBIT_LIBRARIES}"
|
2019-02-05 12:28:58 +00:00
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${TELEORBIT_INCLUDE_DIRS};${TELEORBIT_INCLUDE_DIRS}/teleorbit"
|
2019-02-04 17:17:35 +00:00
|
|
|
INTERFACE_LINK_LIBRARIES "${TELEORBIT_LIBRARIES}"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-12-14 17:59:36 +00:00
|
|
|
mark_as_advanced(TELEORBIT_LIBRARIES TELEORBIT_INCLUDE_DIRS)
|