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/atlas.cmake Normal file
View File

@ -0,0 +1,22 @@
#.rst:
#
# Find and link to ATLAS.
#
# Variables defined::
#
# ATLAS_FOUND
# ATLAS_LIBRARIES
# ATLAS_INCLUDE_DIR
#
# autocmake.cfg configuration::
#
# docopt: --atlas Find and link to ATLAS [default: False].
# define: '-DENABLE_ATLAS=%s' % arguments['--atlas']
option(ENABLE_ATLAS "Find and link to ATLAS" OFF)
if(ENABLE_ATLAS)
set(BLA_VENDOR "ATLAS")
find_package(BLAS REQUIRED)
unset(BLA_VENDOR)
endif()