21 lines
465 B
CMake
21 lines
465 B
CMake
#.rst:
|
|
#
|
|
# Find and link to LAPACK.
|
|
#
|
|
# Variables defined::
|
|
#
|
|
# LAPACK_FOUND - describe me, uncached
|
|
# LAPACK_LIBRARIES - describe me, uncached
|
|
# LAPACK_INCLUDE_DIR - describe me, uncached
|
|
#
|
|
# autocmake.cfg configuration::
|
|
#
|
|
# docopt: --lapack Find and link to LAPACK [default: False].
|
|
# define: '-DENABLE_LAPACK=%s' % arguments['--lapack']
|
|
|
|
option(ENABLE_LAPACK "Find and link to LAPACK" OFF)
|
|
|
|
if(ENABLE_LAPACK)
|
|
find_package(LAPACK REQUIRED)
|
|
endif()
|