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 4d59a83 commit daf574aCopy full SHA for daf574a
cmake/highs-config.cmake.in
@@ -7,6 +7,16 @@ set(@PACKAGE_PREFIX@_VERSION @PROJECT_VERSION@)
7
include(CMakeFindDependencyMacro)
8
find_dependency(Threads)
9
10
+# Only look for BLAS if highs was built with it
11
+set(_HIGHS_HAVE_BLAS @HIPO@)
12
+
13
+if(_HIGHS_HAVE_BLAS)
14
+ find_dependency(BLAS)
15
+endif()
16
17
+# Let users know about optional features
18
+set(HIGHS_HAVE_BLAS ${_HIGHS_HAVE_BLAS})
19
20
@CONF_ZLIB@
21
22
include("${CMAKE_CURRENT_LIST_DIR}/highs-targets.cmake")
0 commit comments