summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-05-04 19:16:09 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-05-04 19:16:09 +0200
commitaa97c836b14b4a449b3bfdf45e62e0588c33bec1 (patch)
tree209054b8f6f74b3b6de9cd54a91b28a4970f1c59 /cmake
parent435729a43ecb3eacb3347ad7cf37f8479680d423 (diff)
Fixed an issue with linking against the ATLAS BLAS library
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/FindCBLAS.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/Modules/FindCBLAS.cmake b/cmake/Modules/FindCBLAS.cmake
index 86f14515..ef3dc4bc 100644
--- a/cmake/Modules/FindCBLAS.cmake
+++ b/cmake/Modules/FindCBLAS.cmake
@@ -48,11 +48,11 @@ mark_as_advanced(CBLAS_INCLUDE_DIRS)
# Finds the library
find_library(CBLAS_LIBRARIES
- NAMES blas mkl blis openblas atlas accelerate
+ NAMES blas cblas mkl blis openblas accelerate
HINTS ${CBLAS_HINTS}
PATH_SUFFIXES
lib lib64 lib/x86_64 lib/x64 lib/x86 lib/Win32 lib/import lib64/import
- openblas/lib blis/lib
+ openblas/lib blis/lib lib/atlas-base
PATHS ${CBLAS_PATHS}
DOC "Netlib BLAS library"
)