https://github.com/fangda-cu/MultiTracker
Raw File
Tip revision: 7719b2fd81ed3c17419b73b60aeb71b7fd83840c authored by fangda-cu on 01 June 2016, 22:45:13 UTC
Merge pull request #1 from tysonbrochu/master
Tip revision: 7719b2f
FindLAPACK.cmake
if (LAPACK_LIBRARIES)
  set (LAPACK_FIND_QUIETLY TRUE)
endif (LAPACK_LIBRARIES)

find_library (LAPACK_LIBRARIES
  lapack
  HINTS
  LAPACK_LIB
  $ENV{LAPACK_LIB}
  ${LIB_INSTALL_DIR}
  )

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(LAPACK DEFAULT_MSG LAPACK_LIBRARIES)

mark_as_advanced (LAPACK_LIBRARIES)
back to top