diff options
author | Brad King <brad.king@kitware.com> | 2021-06-11 12:40:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-06-11 12:40:37 (GMT) |
commit | 8585a12bd94241a6527cee22e840c430a45fead3 (patch) | |
tree | 650420763bcb583c46253f59a5b1d8695e6aba12 /Modules/FindBLAS.cmake | |
parent | 6a7c055f96c02587d36c57a33f5e37cb95c53fac (diff) | |
download | CMake-8585a12bd94241a6527cee22e840c430a45fead3.zip CMake-8585a12bd94241a6527cee22e840c430a45fead3.tar.gz CMake-8585a12bd94241a6527cee22e840c430a45fead3.tar.bz2 |
Find{BLAS,LAPACK}: Move enabled language requirement to top of documentation
Diffstat (limited to 'Modules/FindBLAS.cmake')
-rw-r--r-- | Modules/FindBLAS.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake index 00ce946..ed816fa 100644 --- a/Modules/FindBLAS.cmake +++ b/Modules/FindBLAS.cmake @@ -10,6 +10,8 @@ Find Basic Linear Algebra Subprograms (BLAS) library This module finds an installed Fortran library that implements the `BLAS linear-algebra interface`_. +At least one of the ``C``, ``CXX``, or ``Fortran`` languages must be enabled. + .. _`BLAS linear-algebra interface`: http://www.netlib.org/blas/ Input Variables @@ -63,7 +65,6 @@ This module defines the following variables: .. note:: - C, CXX or Fortran must be enabled to detect a BLAS library. C or CXX must be enabled to use Intel Math Kernel Library (MKL). For example, to use Intel MKL libraries and/or Intel compiler: |