Skip to content

Commit 9281316

Browse files
committed
Update
1 parent af1e564 commit 9281316

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cmake/FindHipoDeps.cmake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ message(STATUS "BLAS_ROOT is " ${BLAS_ROOT})
55

66
find_library(OPENBLAS_LIB
77
NAMES openblas
8-
HINTS "${BLAS_ROOT}/lib")
8+
PATHS "${BLAS_ROOT}/lib")
99

1010
if(OPENBLAS_LIB)
1111
message("Found OpenBLAS library at ${OPENBLAS_LIB}")
1212
else(OPENBLAS_LIB)
1313
find_library(BLAS_LIB
1414
NAMES blas
1515
REQUIRED
16-
HINTS "${BLAS_ROOT}/lib")
16+
PATHS "${BLAS_ROOT}/lib")
1717
message("Found BLAS library at ${BLAS_LIB}")
1818
endif(OPENBLAS_LIB)
1919

@@ -25,13 +25,13 @@ message(STATUS "METIS_ROOT is " ${METIS_ROOT})
2525
find_path(METIS_PATH
2626
NAMES "metis.h"
2727
REQUIRED
28-
HINTS "${METIS_ROOT}/include")
28+
PATHS "${METIS_ROOT}/include")
2929

3030
message("Found Metis header at ${METIS_PATH}")
3131

3232
find_library(METIS_LIB
3333
NAMES metis libmetis
3434
REQUIRED
35-
HINTS "${METIS_ROOT}/lib" "${METIS_ROOT}/bin")
35+
PATHS "${METIS_ROOT}/lib" "${METIS_ROOT}/bin")
3636

3737
message("Found Metis library at ${METIS_LIB}")

0 commit comments

Comments
 (0)