add untested modules for acml, atlas, and goto
This commit is contained in:
22
modules/math/acml.cmake
Normal file
22
modules/math/acml.cmake
Normal file
@ -0,0 +1,22 @@
|
||||
#.rst:
|
||||
#
|
||||
# Find and link to ACML.
|
||||
#
|
||||
# Variables defined::
|
||||
#
|
||||
# ACML_FOUND
|
||||
# ACML_LIBRARIES
|
||||
# ACML_INCLUDE_DIR
|
||||
#
|
||||
# autocmake.cfg configuration::
|
||||
#
|
||||
# docopt: --acml Find and link to ACML [default: False].
|
||||
# define: '-DENABLE_ACML=%s' % arguments['--acml']
|
||||
|
||||
option(ENABLE_ACML "Find and link to ACML" OFF)
|
||||
|
||||
if(ENABLE_ACML)
|
||||
set(BLA_VENDOR "ACML")
|
||||
find_package(BLAS REQUIRED)
|
||||
unset(BLA_VENDOR)
|
||||
endif()
|
Reference in New Issue
Block a user