File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ message(STATUS "BLAS_ROOT is " ${BLAS_ROOT})
55
66find_library (OPENBLAS_LIB
77 NAMES openblas
8- HINTS "${BLAS_ROOT} /lib" )
8+ PATHS "${BLAS_ROOT} /lib" )
99
1010if (OPENBLAS_LIB)
1111 message ("Found OpenBLAS library at ${OPENBLAS_LIB} " )
1212else (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} " )
1818endif (OPENBLAS_LIB)
1919
@@ -25,13 +25,13 @@ message(STATUS "METIS_ROOT is " ${METIS_ROOT})
2525find_path (METIS_PATH
2626 NAMES "metis.h"
2727 REQUIRED
28- HINTS "${METIS_ROOT} /include" )
28+ PATHS "${METIS_ROOT} /include" )
2929
3030message ("Found Metis header at ${METIS_PATH} " )
3131
3232find_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
3737message ("Found Metis library at ${METIS_LIB} " )
You can’t perform that action at this time.
0 commit comments