diff options
author | Alexey Ozeritsky <aozeritsky@gmail.com> | 2010-12-27 08:14:13 (GMT) |
---|---|---|
committer | Alexey Ozeritsky <aozeritsky@gmail.com> | 2010-12-27 08:14:13 (GMT) |
commit | 1279bd7bac7c9970ae1ea76744d05299232e4b04 (patch) | |
tree | 90558bfcd913c3beff093425d65aacb34b8ac7d8 /Modules/FindLAPACK.cmake | |
parent | cabafa37fbd4a8b02e90667476d7568caddff178 (diff) | |
download | CMake-1279bd7bac7c9970ae1ea76744d05299232e4b04.zip CMake-1279bd7bac7c9970ae1ea76744d05299232e4b04.tar.gz CMake-1279bd7bac7c9970ae1ea76744d05299232e4b04.tar.bz2 |
find ACML fixes
Diffstat (limited to 'Modules/FindLAPACK.cmake')
-rw-r--r-- | Modules/FindLAPACK.cmake | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Modules/FindLAPACK.cmake b/Modules/FindLAPACK.cmake index 40effb0..f7b7ab5 100644 --- a/Modules/FindLAPACK.cmake +++ b/Modules/FindLAPACK.cmake @@ -157,11 +157,21 @@ if(BLAS_FOUND) LAPACK cheev "" - "acml" + "acml;acml_mv" "" "" ) endif(NOT LAPACK_LIBRARIES) + if(NOT LAPACK_LIBRARIES) + check_lapack_libraries( + LAPACK_LIBRARIES + LAPACK + cheev + "" + "acml_mp;acml_mv" + "" + ) + endif(NOT LAPACK_LIBRARIES) endif (BLA_VENDOR STREQUAL "ACML" OR BLA_VENDOR STREQUAL "All") # Apple LAPACK library? |