diff armadillo-2.4.4/build_aux/cmake/Modules/ARMA_FindACML.cmake @ 0:8b6102e2a9b0

Armadillo Library
author maxzanoni76 <max.zanoni@eecs.qmul.ac.uk>
date Wed, 11 Apr 2012 09:27:06 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/armadillo-2.4.4/build_aux/cmake/Modules/ARMA_FindACML.cmake	Wed Apr 11 09:27:06 2012 +0100
@@ -0,0 +1,37 @@
+# - Find AMD's ACML library (no includes) which provides optimised BLAS and LAPACK functions
+# This module defines
+#  ACML_LIBRARIES, the libraries needed to use ACML.
+#  ACML_FOUND, If false, do not try to use ACML.
+# also defined, but not for general use are
+#  ACML_LIBRARY, where to find the ACML library.
+
+SET(ACML_NAMES ${ACML_NAMES} acml)
+FIND_LIBRARY(ACML_LIBRARY
+  NAMES ${ACML_NAMES}
+  PATHS /usr/lib64 /usr/lib /usr/*/lib64 /usr/*/lib /usr/*/gfortran64/lib/ /usr/*/gfortran32/lib/ /usr/local/lib64 /usr/local/lib /opt/lib64 /opt/lib /opt/*/lib64 /opt/*/lib /opt/*/gfortran64/lib/ /opt/*/gfortran32/lib/
+  )
+
+IF (ACML_LIBRARY)
+  SET(ACML_LIBRARIES ${ACML_LIBRARY})
+  SET(ACML_FOUND "YES")
+ELSE (ACML_LIBRARY)
+  SET(ACML_FOUND "NO")
+ENDIF (ACML_LIBRARY)
+
+
+IF (ACML_FOUND)
+   IF (NOT ACML_FIND_QUIETLY)
+      MESSAGE(STATUS "Found the ACML library: ${ACML_LIBRARIES}")
+   ENDIF (NOT ACML_FIND_QUIETLY)
+ELSE (ACML_FOUND)
+   IF (ACML_FIND_REQUIRED)
+      MESSAGE(FATAL_ERROR "Could not find the ACML library")
+   ENDIF (ACML_FIND_REQUIRED)
+ENDIF (ACML_FOUND)
+
+# Deprecated declarations.
+GET_FILENAME_COMPONENT (NATIVE_ACML_LIB_PATH ${ACML_LIBRARY} PATH)
+
+MARK_AS_ADVANCED(
+  ACML_LIBRARY
+  )