1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-02-04 13:19:19 +00:00

Improve comments

This commit is contained in:
Carles Fernandez 2019-11-03 00:55:48 +01:00
parent b17e58ed5a
commit fe4319dadc
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
6 changed files with 23 additions and 6 deletions

View File

@ -21,6 +21,10 @@
# GPSTK_INCLUDE_DIR, where to find Rinex3ObsBase.hpp, etc. # GPSTK_INCLUDE_DIR, where to find Rinex3ObsBase.hpp, etc.
# GPSTK_FOUND, If false, do not try to use GPSTK. # GPSTK_FOUND, If false, do not try to use GPSTK.
# GPSTK_LIBRARY, where to find the GPSTK library. # GPSTK_LIBRARY, where to find the GPSTK library.
#
# Provides the following imported target:
# Gpstk::gpstk
#
if(NOT COMMAND feature_summary) if(NOT COMMAND feature_summary)
include(FeatureSummary) include(FeatureSummary)

View File

@ -19,6 +19,11 @@
# Find GR-DBFCTTC Module # Find GR-DBFCTTC Module
######################################################################## ########################################################################
#
# Provides the following imported target:
# Gnuradio::dbfcttc
#
set(PKG_CONFIG_USE_CMAKE_PREFIX_PATH TRUE) set(PKG_CONFIG_USE_CMAKE_PREFIX_PATH TRUE)
include(FindPkgConfig) include(FindPkgConfig)
pkg_check_modules(PC_GR_DBFCTTC gr-dbfcttc) pkg_check_modules(PC_GR_DBFCTTC gr-dbfcttc)

View File

@ -19,6 +19,11 @@
# Find GR-GN3S Module # Find GR-GN3S Module
######################################################################## ########################################################################
#
# Provides the following imported target:
# Gnuradio::gn3s
#
set(PKG_CONFIG_USE_CMAKE_PREFIX_PATH TRUE) set(PKG_CONFIG_USE_CMAKE_PREFIX_PATH TRUE)
include(FindPkgConfig) include(FindPkgConfig)
pkg_check_modules(PC_GR_GN3S gr-gn3s) pkg_check_modules(PC_GR_GN3S gr-gn3s)

View File

@ -17,7 +17,7 @@
# #
# Provides the following imported target: # Provides the following imported target:
# Iio::iio # Iio::ad9361
# #
if(NOT COMMAND feature_summary) if(NOT COMMAND feature_summary)
@ -28,8 +28,7 @@ set(PKG_CONFIG_USE_CMAKE_PREFIX_PATH TRUE)
include(FindPkgConfig) include(FindPkgConfig)
pkg_check_modules(PC_LIBAD9361 libad9361) pkg_check_modules(PC_LIBAD9361 libad9361)
find_path( find_path(LIBAD9361_INCLUDE_DIRS
LIBAD9361_INCLUDE_DIRS
NAMES ad9361.h NAMES ad9361.h
HINTS ${PC_LIBAD9361_INCLUDEDIR} HINTS ${PC_LIBAD9361_INCLUDEDIR}
PATHS /usr/include PATHS /usr/include
@ -41,8 +40,7 @@ find_path(
$ENV{LIBAD9361_DIR}/include $ENV{LIBAD9361_DIR}/include
) )
find_library( find_library(LIBAD9361_LIBRARIES
LIBAD9361_LIBRARIES
NAMES ad9361 NAMES ad9361
HINTS ${PC_LIBAD9361_LIBDIR} HINTS ${PC_LIBAD9361_LIBDIR}
PATHS /usr/lib PATHS /usr/lib

View File

@ -15,6 +15,11 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>. # along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
#
# Provides the following imported target:
# Gnuradio::teleorbit
#
if(NOT COMMAND feature_summary) if(NOT COMMAND feature_summary)
include(FeatureSummary) include(FeatureSummary)
endif() endif()

View File

@ -17,7 +17,7 @@
# #
# Provides the following imported target: # Provides the following imported target:
# Iio::iio # Uhd::uhd
# #
######################################################################## ########################################################################