You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

lapacke-config-build.cmake.in 579 B

1234567891011121314151617
  1. # Load the LAPACK package with which we were built.
  2. set(LAPACK_DIR "@LAPACK_BINARY_DIR@")
  3. find_package(LAPACK NO_MODULE)
  4. # Load lapack targets from the build tree, including lapacke targets.
  5. if(NOT TARGET lapacke)
  6. include("@LAPACK_BINARY_DIR@/lapack-targets.cmake")
  7. endif()
  8. # Hint for project building against lapack
  9. set(LAPACKE_Fortran_COMPILER_ID ${LAPACK_Fortran_COMPILER_ID})
  10. # Report lapacke header search locations from build tree.
  11. set(LAPACKE_INCLUDE_DIRS "@LAPACK_BINARY_DIR@/include")
  12. # Report lapacke libraries.
  13. set(LAPACKE_LIBRARIES lapacke ${LAPACK_LIBRARIES})