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 578 B

123456789101112131415
  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}/lapack-targets.cmake")
  7. endif()
  8. unset(_LAPACK_TARGET)
  9. # Report the blas and lapack raw or imported libraries.
  10. set(LAPACK_blas_LIBRARIES "@BLAS_LIBRARIES@")
  11. set(LAPACK_lapack_LIBRARIES "@LAPACK_LIBRARIES@")
  12. unset(_LAPACK_SELF_DIR)