We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31055a commit 040f1d3Copy full SHA for 040f1d3
cmake/FindHipoDeps.cmake
@@ -5,11 +5,6 @@ if (NOT BLAS_ROOT STREQUAL "")
5
endif()
6
7
set(USE_CMAKE_FIND_BLAS ON)
8
-if (WIN32 AND (
9
- NOT BLA_VENDOR OR BLA_VENDOR STREQUAL "OpenBLAS"))
10
- set(USE_CMAKE_FIND_BLAS OFF)
11
-endif()
12
-
13
14
# Optionally set the vendor:
15
# set(BLA_VENDOR libblastrampoline)
@@ -33,7 +28,7 @@ if (NOT USE_CMAKE_FIND_BLAS)
33
28
# (NOT OpenBLAS_FOUND AND NOT BLAS_FOUND))
34
29
message(STATUS "Looking for blas")
35
30
36
- find_package(OpenBLAS CONFIG)
31
+ find_package(OpenBLAS REQUIRED)
37
32
38
if(OpenBLAS_FOUND)
39
if(TARGET OpenBLAS::OpenBLAS)
0 commit comments