Commit f88fd99e authored by Davis King's avatar Davis King

Make cmake output less confusing

parent c29314f3
......@@ -331,7 +331,7 @@ endif()
# When all else fails use CMake's built in functions to find BLAS and LAPACK
if (NOT blas_found)
find_package(BLAS)
find_package(BLAS QUIET)
if (${BLAS_FOUND})
set(blas_libraries ${BLAS_LIBRARIES})
set(blas_found 1)
......@@ -339,7 +339,7 @@ if (NOT blas_found)
endif()
if (NOT lapack_found)
find_package(LAPACK)
find_package(LAPACK QUIET)
if (${LAPACK_FOUND})
set(lapack_libraries ${LAPACK_LIBRARIES})
set(lapack_found 1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment