mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 02:08:27 +08:00
Tests/Find{BLAS,LAPACK}: Comment purpose of integer size fallback
This commit is contained in:
@@ -4,6 +4,9 @@ include(CTest)
|
||||
|
||||
find_package(BLAS REQUIRED)
|
||||
|
||||
# Configure the test case to match BLAS's integer type ABI.
|
||||
# FindBLAS defaults to 32-bit integers if BLA_SIZEOF_INTEGER
|
||||
# is not already set in the cache.
|
||||
if(NOT BLA_SIZEOF_INTEGER)
|
||||
set(BLA_SIZEOF_INTEGER 4)
|
||||
endif()
|
||||
|
@@ -4,6 +4,9 @@ include(CTest)
|
||||
|
||||
find_package(LAPACK REQUIRED)
|
||||
|
||||
# Configure the test case to match LAPACK's integer type ABI.
|
||||
# FindLAPACK defaults to 32-bit integers if BLA_SIZEOF_INTEGER
|
||||
# is not already set in the cache.
|
||||
if(NOT BLA_SIZEOF_INTEGER)
|
||||
set(BLA_SIZEOF_INTEGER 4)
|
||||
endif()
|
||||
|
Reference in New Issue
Block a user