Skip to content

Commit f429885

Browse files
authored
Merge pull request #2592 from ERGO-Code/hipo-dev
Just message formatting
2 parents 89fdcc8 + 0b27831 commit f429885

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

cmake/FindHipoDeps.cmake

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,18 @@ if (NOT USE_CMAKE_FIND_BLAS)
6363
NO_DEFAULT_PATH)
6464

6565
if(OPENBLAS_LIB)
66-
message("Found OpenBLAS library at ${OPENBLAS_LIB}")
66+
message(STATUS "Found OpenBLAS library at ${OPENBLAS_LIB}")
6767
else()
6868
find_library(BLAS_LIB
6969
NAMES blas
7070
HINTS "${BLAS_ROOT}/lib"
7171
NO_DEFAULT_PATH)
7272

7373
if(BLAS_LIB)
74-
message("Found BLAS library at ${BLAS_LIB}")
74+
message(STATUS "Found BLAS library at ${BLAS_LIB}")
7575
else()
76-
message("Did not find blas library at ${BLAS_ROOT}")
77-
message("Attempting default locations search")
76+
message(STATUS "Did not find blas library at ${BLAS_ROOT}")
77+
message(STATUS "Attempting default locations search")
7878
endif()
7979
endif()
8080
endif()
@@ -85,14 +85,14 @@ if (NOT USE_CMAKE_FIND_BLAS)
8585
HINTS "${BLAS_ROOT}/lib")
8686

8787
if(OPENBLAS_LIB)
88-
message("Found OpenBLAS library at ${OPENBLAS_LIB}")
88+
message(STATUS "Found OpenBLAS library at ${OPENBLAS_LIB}")
8989
else()
9090
find_library(BLAS_LIB
9191
NAMES blas
9292
HINTS "${BLAS_ROOT}/lib")
9393

9494
if(BLAS_LIB)
95-
message("Found BLAS library at ${BLAS_LIB}")
95+
message(STATUS "Found BLAS library at ${BLAS_LIB}")
9696
else()
9797
message(FATAL_ERROR "No BLAS library found")
9898
endif()
@@ -157,7 +157,7 @@ else()
157157
PATHS "${METIS_ROOT}/include"
158158
NO_DEFAULT_PATH)
159159

160-
message("Found Metis header at ${METIS_PATH}")
160+
message(STATUS "Found Metis header at ${METIS_PATH}")
161161

162162
find_library(METIS_LIB
163163
NAMES metis libmetis
@@ -166,10 +166,10 @@ else()
166166
NO_DEFAULT_PATH)
167167

168168
if(METIS_LIB)
169-
message("Found Metis library at ${METIS_LIB}")
169+
message(STATUS "Found Metis library at ${METIS_LIB}")
170170
else()
171171
# METIS_ROOT was not successful
172-
message("Metis not found in METIS_PATH, fallback to default search.")
172+
message(STATUS "Metis not found in METIS_PATH, fallback to default search.")
173173
if (NOT (METIS_ROOT STREQUAL ""))
174174
find_package(metis CONFIG)
175175

@@ -213,7 +213,7 @@ if (NOT (GKLIB_ROOT STREQUAL ""))
213213
PATHS "${GKLIB_ROOT}/include"
214214
NO_DEFAULT_PATH)
215215

216-
message("Found GKlib header at ${GKLIB_PATH}")
216+
message(STATUS "Found GKlib header at ${GKLIB_PATH}")
217217

218218
find_library(GKLIB_LIB
219219
NAMES GKlib libGKlib
@@ -222,10 +222,10 @@ if (NOT (GKLIB_ROOT STREQUAL ""))
222222
NO_DEFAULT_PATH)
223223

224224
if(GKLIB_LIB)
225-
message("Found GKlib library at ${GKLIB_LIB}")
225+
message(STATUS "Found GKlib library at ${GKLIB_LIB}")
226226
else()
227227
# GKLIB_ROOT was not successful
228-
message("GKlib not found in GKLIB_PATH, fallback to default search.")
228+
message(STATUS "GKlib not found in GKLIB_PATH, fallback to default search.")
229229
find_package(GKlib CONFIG)
230230

231231
if (GKlib_FOUND)

0 commit comments

Comments
 (0)