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.

lapack-config-install.cmake.in 763 B

12345678910111213141516171819
  1. # Compute locations from <prefix>/lib/cmake/lapack-<v>/<self>.cmake
  2. get_filename_component(_LAPACK_SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
  3. # Load lapack targets from the install tree if necessary.
  4. set(_LAPACK_TARGET "@_lapack_config_install_guard_target@")
  5. if(_LAPACK_TARGET AND NOT TARGET "${_LAPACK_TARGET}")
  6. include("${_LAPACK_SELF_DIR}/@LAPACKLIB@-targets.cmake")
  7. endif()
  8. unset(_LAPACK_TARGET)
  9. # Hint for project building against lapack
  10. set(LAPACK_Fortran_COMPILER_ID "@CMAKE_Fortran_COMPILER_ID@")
  11. # Report the blas and lapack raw or imported libraries.
  12. set(LAPACK_blas_LIBRARIES "@BLAS_LIBRARIES@")
  13. set(LAPACK_lapack_LIBRARIES "@LAPACK_LIBRARIES@")
  14. set(LAPACK_LIBRARIES ${LAPACK_blas_LIBRARIES} ${LAPACK_lapack_LIBRARIES})
  15. unset(_LAPACK_SELF_DIR)