1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-13 16:56:52 +00:00

Cosmetic changes

This commit is contained in:
Carles Fernandez 2014-06-07 10:23:32 +02:00
parent b2e85053b4
commit c85efa7473

View File

@ -559,6 +559,9 @@ endif(DOXYGEN_FOUND)
################################################################################ ################################################################################
if(OS_IS_LINUX) if(OS_IS_LINUX)
#############################################
# Check that LAPACK is found in the system
#############################################
find_library(LAPACK lapack) find_library(LAPACK lapack)
if(NOT LAPACK) if(NOT LAPACK)
message(" The LAPACK library has not been found.") message(" The LAPACK library has not been found.")
@ -572,9 +575,10 @@ if(OS_IS_LINUX)
endif(${LINUX_DISTRIBUTION} MATCHES "Fedora" OR ${LINUX_DISTRIBUTION} MATCHES "Red Hat") endif(${LINUX_DISTRIBUTION} MATCHES "Fedora" OR ${LINUX_DISTRIBUTION} MATCHES "Red Hat")
message(FATAL_ERROR "LAPACK is required to build gnss-sdr") message(FATAL_ERROR "LAPACK is required to build gnss-sdr")
endif(NOT LAPACK) endif(NOT LAPACK)
if(NOT BLAS) #############################################
find_library(BLAS blas) # Check that BLAS is found in the system
endif(NOT BLAS) #############################################
find_library(BLAS blas)
if(NOT BLAS) if(NOT BLAS)
message(" The BLAS library has not been found.") message(" The BLAS library has not been found.")
message(" You can try to install it by typing:") message(" You can try to install it by typing:")
@ -585,6 +589,9 @@ if(OS_IS_LINUX)
endif(${LINUX_DISTRIBUTION} MATCHES "Fedora" OR ${LINUX_DISTRIBUTION} MATCHES "Red Hat") endif(${LINUX_DISTRIBUTION} MATCHES "Fedora" OR ${LINUX_DISTRIBUTION} MATCHES "Red Hat")
message(FATAL_ERROR "BLAS is required to build gnss-sdr") message(FATAL_ERROR "BLAS is required to build gnss-sdr")
endif(NOT BLAS) endif(NOT BLAS)
#############################################
# Check that GFORTRAN is found in the system
#############################################
find_library(GFORTRAN NAMES gfortran find_library(GFORTRAN NAMES gfortran
PATHS /usr/lib PATHS /usr/lib
/usr/local/lib /usr/local/lib