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

Improve information provided to the user

This commit is contained in:
Carles Fernandez 2020-02-22 13:52:34 +01:00
parent 4eea63326f
commit a2076418d8
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 14 additions and 3 deletions

View File

@ -35,7 +35,7 @@ if("${ARMADILLO_VERSION_STRING}" VERSION_GREATER "9.800" OR (NOT ARMADILLO_FOUND
-Wno-deprecated -Wno-unused-parameter -Wno-sign-compare -Wno-reorder
)
endif()
if(NOT ARMADILLO_FOUND OR ENABLE_OWN_ARMADILLO)
add_dependencies(obsdiff armadillo-${armadillo_RELEASE})
endif()
@ -75,5 +75,6 @@ if("${ARMADILLO_VERSION_STRING}" VERSION_GREATER "9.800" OR (NOT ARMADILLO_FOUND
)
else()
message(STATUS "The Armadillo library version found (${ARMADILLO_VERSION_STRING}) is older than 9.800.")
message(STATUS "The obsdiff utility tool will not be built.")
message(STATUS " The obsdiff utility tool will not be built.")
message(STATUS " You could build it by setting -DENABLE_OWN_ARMADILLO=ON")
endif()

View File

@ -100,7 +100,17 @@ if(Boost_FOUND)
)
else()
message(STATUS "Boost Iostreams library not found.")
message(STATUS "The rinex2assist utility tool will not be built.")
message(STATUS " The rinex2assist utility tool will not be built.")
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux|kFreeBSD|GNU")
message(STATUS " You can install the Boost Iostreams library it by doing:")
if(${LINUX_DISTRIBUTION} MATCHES "Fedora" OR ${LINUX_DISTRIBUTION} MATCHES "Red Hat")
message(STATUS " sudo yum install boost-iostreams")
elseif(${LINUX_DISTRIBUTION} MATCHES "openSUSE")
message(STATUS " sudo zypper install libboost_iostreams-devel")
else()
message(STATUS " sudo apt-get install libboost-iostreams-dev")
endif()
endif()
endif()
set(Boost_FOUND TRUE) # trick for summary report