Skip to content
Snippets Groups Projects
Commit 8d26a701 authored by Christoph Grüninger's avatar Christoph Grüninger Committed by Steffen Müthing
Browse files

[CMake] Do not require BLAS


Don't end configure if BLAS is not found. Only the SuperLU
test should fail, which will be the case anyway.

(cherry picked from commit 4e461be4)
Signed-off-by: default avatarSteffen Müthing <muething@dune-project.org>
parent 922bd812
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@
#
# look for BLAS
find_package(BLAS QUIET REQUIRED)
find_package(BLAS QUIET)
if(NOT BLAS_FOUND)
message(WARNING "SuperLU requires BLAS which was not found, skipping the test.")
return()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment