21 lines
400 B
CMake
21 lines
400 B
CMake
#.rst:
|
|
#
|
|
# Find and link to LAPACK.
|
|
#
|
|
# Variables defined::
|
|
#
|
|
# LAPACK_FOUND
|
|
# LAPACK_LIBRARIES
|
|
# LAPACK_INCLUDE_DIR
|
|
#
|
|
# autocmake.cfg configuration::
|
|
#
|
|
# docopt: --lapack Find and link to LAPACK [default: False].
|
|
# define: '-DENABLE_LAPACK={0}'.format(arguments['--lapack'])
|
|
|
|
option(ENABLE_LAPACK "Find and link to LAPACK" OFF)
|
|
|
|
if(ENABLE_LAPACK)
|
|
find_package(LAPACK REQUIRED)
|
|
endif()
|