You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
452 B
14 lines
452 B
# Load the LAPACK package with which we were built.
|
|
set(LAPACK_DIR "@LAPACK_BINARY_DIR@")
|
|
find_package(LAPACK NO_MODULE)
|
|
|
|
# Load lapack targets from the build tree, including lapacke targets.
|
|
if(NOT TARGET lapacke)
|
|
include("@LAPACK_BINARY_DIR@/@LAPACKLIB@-targets.cmake")
|
|
endif()
|
|
|
|
# Report cblas header search locations from build tree.
|
|
set(CBLAS_INCLUDE_DIRS "@LAPACK_BINARY_DIR@/include")
|
|
|
|
# Report cblas libraries.
|
|
set(CBLAS_LIBRARIES @CBLASLIB@)
|
|
|