mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-03 06:50:57 +08:00
86ccd99d8d
* add a LDL^T factorization with solver using code from T. Davis's LDL library (LPGL2.1+) * various bug fixes in trianfular solver, matrix product, etc. * improve cmake files for the supported libraries * split the sparse unit test * etc.
25 lines
703 B
CMake
25 lines
703 B
CMake
|
|
if (SUPERLU_INCLUDES AND SUPERLU_LIBRARIES)
|
|
set(SUPERLU_FIND_QUIETLY TRUE)
|
|
endif (SUPERLU_INCLUDES AND SUPERLU_LIBRARIES)
|
|
|
|
find_path(SUPERLU_INCLUDES
|
|
NAMES
|
|
superlu/supermatrix.h
|
|
PATHS
|
|
$ENV{SUPERLUDIR}
|
|
${INCLUDE_INSTALL_DIR}
|
|
)
|
|
|
|
find_library(SUPERLU_LIBRARIES superlu PATHS $ENV{SUPERLUDIR} ${LIB_INSTALL_DIR})
|
|
|
|
if(SUPERLU_LIBRARIES AND CMAKE_COMPILER_IS_GNUCXX)
|
|
set(SUPERLU_LIBRARIES ${SUPERLU_LIBRARIES} -lgfortran)
|
|
endif(SUPERLU_LIBRARIES AND CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(SUPERLU DEFAULT_MSG
|
|
SUPERLU_INCLUDES SUPERLU_LIBRARIES)
|
|
|
|
mark_as_advanced(SUPERLU_INCLUDES SUPERLU_LIBRARIES)
|