add untested modules for acml, atlas, and goto

This commit is contained in:
Radovan Bast
2015-09-19 16:00:48 +02:00
parent 9e32dd790d
commit aff9a9034c
5 changed files with 72 additions and 6 deletions

22
modules/math/acml.cmake Normal file
View 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()