mirror of https://github.com/davisking/dlib.git
Make cmake output less confusing
This commit is contained in:
parent
c29314f34a
commit
f88fd99ed4
|
@ -331,7 +331,7 @@ endif()
|
||||||
|
|
||||||
# When all else fails use CMake's built in functions to find BLAS and LAPACK
|
# When all else fails use CMake's built in functions to find BLAS and LAPACK
|
||||||
if (NOT blas_found)
|
if (NOT blas_found)
|
||||||
find_package(BLAS)
|
find_package(BLAS QUIET)
|
||||||
if (${BLAS_FOUND})
|
if (${BLAS_FOUND})
|
||||||
set(blas_libraries ${BLAS_LIBRARIES})
|
set(blas_libraries ${BLAS_LIBRARIES})
|
||||||
set(blas_found 1)
|
set(blas_found 1)
|
||||||
|
@ -339,7 +339,7 @@ if (NOT blas_found)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (NOT lapack_found)
|
if (NOT lapack_found)
|
||||||
find_package(LAPACK)
|
find_package(LAPACK QUIET)
|
||||||
if (${LAPACK_FOUND})
|
if (${LAPACK_FOUND})
|
||||||
set(lapack_libraries ${LAPACK_LIBRARIES})
|
set(lapack_libraries ${LAPACK_LIBRARIES})
|
||||||
set(lapack_found 1)
|
set(lapack_found 1)
|
||||||
|
|
Loading…
Reference in New Issue