37 lines
1.0 KiB
CMake
37 lines
1.0 KiB
CMake
#.rst:
|
|
#
|
|
# Find and link to CBLAS.
|
|
#
|
|
# Variables defined::
|
|
#
|
|
# CBLAS_FOUND - describe me, uncached
|
|
# CBLAS_LIBRARIES - describe me, uncached
|
|
# CBLAS_INCLUDE_DIR - describe me, uncached
|
|
#
|
|
# autocmake.cfg configuration::
|
|
#
|
|
# docopt: --cblas Find and link to CBLAS [default: False].
|
|
# define: '-DENABLE_CBLAS={0}'.format(arguments['--cblas'])
|
|
# fetch: https://github.com/coderefinery/autocmake/raw/master/modules/find/find_libraries.cmake
|
|
# https://github.com/coderefinery/autocmake/raw/master/modules/find/find_include_files.cmake
|
|
|
|
option(ENABLE_CBLAS "Find and link to CBLAS" OFF)
|
|
|
|
if(ENABLE_CBLAS)
|
|
include(find_libraries)
|
|
include(find_include_files)
|
|
|
|
set(CBLAS_FOUND FALSE)
|
|
set(CBLAS_LIBRARIES "NOTFOUND")
|
|
set(CBLAS_INCLUDE_DIR "NOTFOUND")
|
|
|
|
_find_library(cblas cblas_dgemm CBLAS_LIBRARIES)
|
|
_find_include_dir(cblas.h /usr CBLAS_INCLUDE_DIR)
|
|
|
|
if(NOT "${CBLAS_LIBRARIES}" MATCHES "NOTFOUND")
|
|
if(NOT "${CBLAS_INCLUDE_DIR}" MATCHES "NOTFOUND")
|
|
set(CBLAS_FOUND TRUE)
|
|
endif()
|
|
endif()
|
|
endif()
|