2020-12-30 12:35:06 +00:00
|
|
|
# GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
2018-12-12 00:37:37 +00:00
|
|
|
# This file is part of GNSS-SDR.
|
|
|
|
#
|
2020-12-30 12:35:06 +00:00
|
|
|
# SPDX-FileCopyrightText: 2011-2020 C. Fernandez-Prades cfernandez(at)cttc.es
|
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2018-12-12 00:37:37 +00:00
|
|
|
|
|
|
|
# Tries to find gr-osmosdr.
|
|
|
|
#
|
|
|
|
# Usage of this module as follows:
|
|
|
|
#
|
|
|
|
# find_package(GROSMOSDR)
|
|
|
|
#
|
|
|
|
# Variables used by this module, they can change the default behaviour and need
|
|
|
|
# to be set before calling find_package:
|
|
|
|
#
|
|
|
|
# GrOsmoSDR_ROOT_DIR Set this variable to the root installation of
|
|
|
|
# gr-osmosdr if the module has problems finding
|
|
|
|
# the proper installation path.
|
|
|
|
#
|
|
|
|
# Variables defined by this module:
|
|
|
|
#
|
|
|
|
# GROSMOSDR_FOUND System has gr-osmosdr libs/headers
|
|
|
|
# GROSMOSDR_LIBRARIES The gr-osmosdr libraries (gnuradio-osmosdr)
|
|
|
|
# GROSMOSDR_INCLUDE_DIR The location of gr-osmosdr headers
|
2019-02-04 15:07:29 +00:00
|
|
|
#
|
|
|
|
# Provides the following imported target:
|
|
|
|
# Gnuradio::osmosdr
|
|
|
|
#
|
|
|
|
|
2019-06-21 00:49:41 +00:00
|
|
|
if(NOT COMMAND feature_summary)
|
|
|
|
include(FeatureSummary)
|
|
|
|
endif()
|
2018-12-12 00:37:37 +00:00
|
|
|
|
2020-11-01 13:35:15 +00:00
|
|
|
if(NOT PKG_CONFIG_FOUND)
|
|
|
|
include(FindPkgConfig)
|
|
|
|
endif()
|
|
|
|
|
2018-12-12 00:37:37 +00:00
|
|
|
pkg_check_modules(GROSMOSDR_PKG gnuradio-osmosdr)
|
|
|
|
|
2020-02-29 13:33:09 +00:00
|
|
|
if(NOT GROSMOSDR_ROOT)
|
|
|
|
set(GROSMOSDR_ROOT_USER_DEFINED /usr)
|
|
|
|
else()
|
|
|
|
set(GROSMOSDR_ROOT_USER_DEFINED ${GROSMOSDR_ROOT})
|
|
|
|
endif()
|
|
|
|
if(DEFINED ENV{GROSMOSDR_ROOT})
|
|
|
|
set(GROSMOSDR_ROOT_USER_DEFINED
|
|
|
|
${GROSMOSDR_ROOT_USER_DEFINED}
|
|
|
|
$ENV{GROSMOSDR_ROOT}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-12-12 00:37:37 +00:00
|
|
|
find_path(GROSMOSDR_INCLUDE_DIR
|
2020-02-29 13:33:09 +00:00
|
|
|
NAMES
|
|
|
|
osmosdr/source.h
|
|
|
|
osmosdr/api.h
|
|
|
|
HINTS
|
|
|
|
${GROSMOSDR_PKG_INCLUDEDIR}
|
|
|
|
PATHS
|
|
|
|
${GROSMOSDR_ROOT_USER_DEFINED}/include
|
|
|
|
/usr/include
|
|
|
|
/usr/local/include
|
|
|
|
/opt/local/include
|
2018-12-12 00:37:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
find_library(GROSMOSDR_LIBRARIES
|
2020-02-29 13:33:09 +00:00
|
|
|
NAMES
|
|
|
|
gnuradio-osmosdr
|
|
|
|
HINTS
|
|
|
|
${GROSMOSDR_PKG_LIBDIR}
|
|
|
|
PATHS
|
|
|
|
${GROSMOSDR_ROOT_USER_DEFINED}/lib
|
|
|
|
${GROSMOSDR_ROOT_USER_DEFINED}/lib64
|
|
|
|
/usr/lib
|
|
|
|
/usr/lib64
|
|
|
|
/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/riscv64-linux-gnu
|
|
|
|
/usr/lib/alpha-linux-gnu
|
2024-02-21 16:39:43 +00:00
|
|
|
/usr/lib/loongarch64-linux-gnu
|
2020-02-29 13:33:09 +00:00
|
|
|
/usr/local/lib
|
|
|
|
/usr/local/lib64
|
|
|
|
/opt/local/lib
|
2018-12-12 00:37:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(GROSMOSDR DEFAULT_MSG GROSMOSDR_LIBRARIES GROSMOSDR_INCLUDE_DIR)
|
2019-02-04 15:07:29 +00:00
|
|
|
|
2019-06-18 06:59:06 +00:00
|
|
|
if(GROSMOSDR_PKG_VERSION)
|
2019-07-04 06:11:25 +00:00
|
|
|
set(GROSMOSDR_VERSION_AUX ${GROSMOSDR_PKG_VERSION})
|
|
|
|
string(REGEX REPLACE "^v" "" GROSMOSDR_VERSION ${GROSMOSDR_VERSION_AUX})
|
2019-06-18 06:59:06 +00:00
|
|
|
endif()
|
|
|
|
|
2019-06-21 00:49:41 +00:00
|
|
|
set_package_properties(GROSMOSDR PROPERTIES
|
|
|
|
URL "https://osmocom.org/projects/gr-osmosdr/wiki"
|
|
|
|
)
|
|
|
|
|
|
|
|
if(GROSMOSDR_FOUND AND GROSMOSDR_VERSION)
|
|
|
|
set_package_properties(GROSMOSDR PROPERTIES
|
2019-06-26 10:39:58 +00:00
|
|
|
DESCRIPTION "osmocom GNU Radio blocks (found: v${GROSMOSDR_VERSION})"
|
2019-06-21 00:49:41 +00:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
set_package_properties(GROSMOSDR PROPERTIES
|
|
|
|
DESCRIPTION "osmocom GNU Radio blocks"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2019-02-04 17:17:35 +00:00
|
|
|
if(GROSMOSDR_FOUND AND NOT TARGET Gnuradio::osmosdr)
|
|
|
|
add_library(Gnuradio::osmosdr SHARED IMPORTED)
|
|
|
|
set_target_properties(Gnuradio::osmosdr PROPERTIES
|
2019-02-04 15:07:29 +00:00
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
|
|
|
|
IMPORTED_LOCATION "${GROSMOSDR_LIBRARIES}"
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${GROSMOSDR_INCLUDE_DIR};${GROSMOSDR_INCLUDE_DIR}/osmosdr"
|
|
|
|
INTERFACE_LINK_LIBRARIES "${GROSMOSDR_LIBRARIES}"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-12-12 00:37:37 +00:00
|
|
|
mark_as_advanced(GROSMOSDR_LIBRARIES GROSMOSDR_INCLUDE_DIR)
|