1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
#-------------------------------------------------------------------------------
# SuiteSparse/SuiteSparse_config/cmake_modules/SuiteSparseBLAS32.cmake
#-------------------------------------------------------------------------------
# SuiteSparse_config, Copyright (c) 2012-2023, Timothy A. Davis.
# All Rights Reserved.
# SPDX-License-Identifier: BSD-3-clause
#-------------------------------------------------------------------------------
# actions taken when a 32-bit BLAS has been found
message ( STATUS "Found ${BLA_VENDOR} 32-bit BLAS" )
add_compile_definitions ( BLAS_${BLA_VENDOR} )
set ( SuiteSparse_BLAS_integer "int32_t" )
|