Commit 899a3c63 authored by Davis King's avatar Davis King

Updated the BLAS cmake file so that it works on more platforms.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403286
parent e97df82b
......@@ -54,6 +54,17 @@ if (UNIX)
# try to find some other BLAS libraries if we didn't find the MKL
if (NOT blas_found)
find_library(cblas_lib cblas)
if (cblas_lib)
set(blas_libraries ${cblas_lib})
set(blas_found 1)
message(STATUS "Found CBLAS library")
endif()
mark_as_advanced( cblas_lib)
endif()
if (NOT blas_found)
find_library(atlas_lib atlas)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment