aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmake/FindUmfpack.cmake
Commit message (Collapse)AuthorAge
* Eliminate CMake FindPackageHandleStandardArgs warnings.Gravatar Antonio Sanchez2021-02-24
| | | | | | | | | | | | | | | | | CMake complains that the package name does not match when the case differs, e.g.: ``` CMake Warning (dev) at /usr/share/cmake-3.18/Modules/FindPackageHandleStandardArgs.cmake:273 (message): The package name passed to `find_package_handle_standard_args` (UMFPACK) does not match the name of the calling package (Umfpack). This can lead to problems in calling code that expects `find_package` result variables (e.g., `_FOUND`) to follow a certain pattern. Call Stack (most recent call first): cmake/FindUmfpack.cmake:50 (find_package_handle_standard_args) bench/spbench/CMakeLists.txt:24 (find_package) This warning is for project developers. Use -Wno-dev to suppress it. ``` Here we rename the libraries to match their true cases.
* STYLE: Remove CMake-language block-end command argumentsGravatar Hans Johnson2019-10-31
| | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style.
* SPQR and UmfPack need to link to cholmod.Gravatar Gael Guennebaud2015-11-05
| | | | | (grafted from 47592d31eabfb09b811005a725ea5ca2eb5a6fcf )
* Improve SuiteSparse cmake scriptsGravatar Gael Guennebaud2013-06-12
|
* Recent UMFPACK library requires to link to libSuiteSparseGravatar Gael Guennebaud2013-01-22
|
* Fix FindUmfpack when specifying manually the related cmake variables.Gravatar Gael Guennebaud2012-11-05
|
* bug #493 : multiple calls to FindUmfPackGravatar Desire NUENTSA2012-08-02
| | | | | (transplanted from 1914024965172d6920f3cbfa35b09053dcbb7fc8 )
* find macport' umfpack/cholmodGravatar Gael Guennebaud2011-09-21
|
* it is now up to user of these Find* module to find and link to BLAS and/or ↵Gravatar Gael Guennebaud2011-02-18
| | | | LAPACK
* add custom FindBLAS FindLAPACK working for c++ compilerGravatar Gael Guennebaud2009-02-05
| | | | fix issues in Cholmod/Taucs supports
* FindUmfPack: add AMD and COLAMD libraries only if they are foundGravatar Gael Guennebaud2009-01-27
|
* clean FindUmfpack.cmake wrt enable_language(Fortran)Gravatar Gael Guennebaud2008-12-02
|
* Several improvements in sparse module:Gravatar Gael Guennebaud2008-11-05
| | | | | | | | | * 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.
* * add cmake files to find (optional) supported librariesGravatar Gael Guennebaud2008-10-20
* add unit tests for sparse cholesky