Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
f88fd99e
Commit
f88fd99e
authored
Oct 27, 2017
by
Davis King
Browse files
Make cmake output less confusing
parent
c29314f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dlib/cmake_utils/cmake_find_blas.txt
dlib/cmake_utils/cmake_find_blas.txt
+2
-2
No files found.
dlib/cmake_utils/cmake_find_blas.txt
View file @
f88fd99e
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment