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/>.
|
|
|
|
|
|
|
|
# Tries to find libosmosdr.
|
|
|
|
#
|
|
|
|
# Usage of this module as follows:
|
|
|
|
#
|
|
|
|
# find_package(LIBOSMOSDR)
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Variables defined by this module:
|
|
|
|
#
|
|
|
|
# LIBOSMOSDR_FOUND System has libosmosdr libs/headers
|
|
|
|
# LIBOSMOSDR_LIBRARIES The libosmosdr libraries
|
|
|
|
# LIBOSMOSDR_INCLUDE_DIR The location of libosmosdr headers
|
2019-02-04 15:07:29 +00:00
|
|
|
#
|
|
|
|
# Provides the following imported target:
|
|
|
|
# Osmosdr::osmosdr
|
|
|
|
#
|
2018-12-14 17:59:36 +00:00
|
|
|
|
|
|
|
include(FindPkgConfig)
|
|
|
|
pkg_check_modules(LIBOSMOSDR_PKG libosmosdr)
|
|
|
|
|
|
|
|
find_path(LIBOSMOSDR_INCLUDE_DIR NAMES osmosdr.h
|
|
|
|
PATHS
|
|
|
|
${LIBOSMOSDR_PKG_INCLUDE_DIRS}
|
|
|
|
/usr/include
|
|
|
|
/usr/local/include
|
|
|
|
${LIBOSMOSDR_ROOT}/include
|
|
|
|
$ENV{LIBOSMOSDR_ROOT}/include
|
2019-06-18 07:22:56 +00:00
|
|
|
${LIBOSMOSDR_PKG_INCLUDEDIR}
|
2018-12-14 17:59:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
find_library(LIBOSMOSDR_LIBRARIES NAMES osmosdr
|
|
|
|
PATHS
|
|
|
|
${LIBOSMOSDR_PKG_LIBRARY_DIRS}
|
|
|
|
/usr/lib
|
|
|
|
/usr/local/lib
|
|
|
|
/usr/lib/x86_64-linux-gnu
|
|
|
|
/usr/lib/i386-linux-gnu
|
|
|
|
/usr/lib/arm-linux-gnueabihf
|
|
|
|
/usr/lib/arm-linux-gnueabi
|
|
|
|
/usr/lib/aarch64-linux-gnu
|
|
|
|
/usr/lib/mipsel-linux-gnu
|
|
|
|
/usr/lib/mips-linux-gnu
|
|
|
|
/usr/lib/mips64el-linux-gnuabi64
|
|
|
|
/usr/lib/powerpc-linux-gnu
|
|
|
|
/usr/lib/powerpc64-linux-gnu
|
|
|
|
/usr/lib/powerpc64le-linux-gnu
|
|
|
|
/usr/lib/powerpc-linux-gnuspe
|
|
|
|
/usr/lib/hppa-linux-gnu
|
|
|
|
/usr/lib/s390x-linux-gnu
|
|
|
|
/usr/lib/i386-gnu
|
|
|
|
/usr/lib/hppa-linux-gnu
|
|
|
|
/usr/lib/x86_64-kfreebsd-gnu
|
|
|
|
/usr/lib/i386-kfreebsd-gnu
|
|
|
|
/usr/lib/m68k-linux-gnu
|
|
|
|
/usr/lib/sh4-linux-gnu
|
|
|
|
/usr/lib/sparc64-linux-gnu
|
|
|
|
/usr/lib/x86_64-linux-gnux32
|
|
|
|
/usr/lib/alpha-linux-gnu
|
|
|
|
/usr/lib64
|
|
|
|
${LIBOSMOSDR_ROOT}/lib
|
|
|
|
$ENV{LIBOSMOSDR_ROOT}/lib
|
|
|
|
${LIBOSMOSDR_ROOT}/lib64
|
|
|
|
$ENV{LIBOSMOSDR_ROOT}/lib64
|
2019-06-18 07:22:56 +00:00
|
|
|
${LIBOSMOSDR_PKG_LIBDIR}
|
2018-12-14 17:59:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(LIBOSMOSDR DEFAULT_MSG LIBOSMOSDR_INCLUDE_DIR LIBOSMOSDR_LIBRARIES)
|
2019-02-04 15:07:29 +00:00
|
|
|
|
2019-02-04 17:17:35 +00:00
|
|
|
if(LIBOSMOSDR_FOUND AND NOT TARGET Osmosdr::osmosdr)
|
|
|
|
add_library(Osmosdr::osmosdr SHARED IMPORTED)
|
|
|
|
set_target_properties(Osmosdr::osmosdr PROPERTIES
|
2019-02-04 15:07:29 +00:00
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
|
|
|
|
IMPORTED_LOCATION "${LIBOSMOSDR_LIBRARIES}"
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${LIBOSMOSDR_INCLUDE_DIR}"
|
|
|
|
INTERFACE_LINK_LIBRARIES "${LIBOSMOSDR_LIBRARIES}"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-12-14 17:59:36 +00:00
|
|
|
mark_as_advanced(LIBOSMOSDR_INCLUDE_DIR LIBOSMOSDR_LIBRARIES)
|