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.
2 parents 8b98db1 + 35914aa commit 5f200dcCopy full SHA for 5f200dc
CMakeLists.txt
@@ -21,6 +21,8 @@ include(CMakePackageConfigHelpers)
21
#######
22
option(BUILD_WITHOUT_LAPACK "Do not build LAPACK and LAPACKE (Only BLAS or CBLAS)" OFF)
23
24
+option(BUILD_WITHOUT_LAPACKE "Do not build the C interface to LAPACK)" OFF)
25
+
26
option(BUILD_LAPACK_DEPRECATED "When building LAPACK, include also some older, deprecated routines" ON)
27
28
set(LAPACK_STRLEN "" CACHE STRING "When building LAPACK, use this type (e.g. \"int\") for character lengths (defaults to size_t)")
@@ -81,6 +83,10 @@ if(BUILD_WITHOUT_LAPACK)
81
83
set(NO_LAPACKE 1)
82
84
endif()
85
86
+if (BUILD_WITHOUT_LAPACKE)
87
+ set(NO_LAPACKE 1)
88
+endif()
89
90
if(BUILD_WITHOUT_CBLAS)
91
set(NO_CBLAS 1)
92
0 commit comments