From a94e74def289dbfaf3b46b6a9ae55e27370622b7 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 23 Mar 2019 00:43:01 +0100 Subject: [PATCH] Search for generic BLAS and LAPACK implementations --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 356eec9db..f4418eb8c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1335,6 +1335,9 @@ if(OS_IS_MACOSX) # Avoid using the implementation that comes with the Accelerate framework include(AvoidAccelerate) else() + if(NOT BLA_VENDOR) + set(BLA_VENDOR "Generic") + endif() find_package(BLAS) set_package_properties(BLAS PROPERTIES URL "http://www.netlib.org/blas/"