Skip to content
Snippets Groups Projects
Commit d32789cb authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[cmake] Add description and purpose to feature summary

parent 17eb3b67
No related branches found
No related tags found
No related merge requests found
......@@ -88,3 +88,8 @@ else()
"Determing location of ARPACK failed:\n"
"Libraries to link against: ${ARPACK_LIBRARIES}\n\n")
endif()
# text for feature summary
set_package_properties("ARPACK" PROPERTIES
DESCRIPTION "ARnoldi PACKage"
PURPOSE "Solve large scale eigenvalue problems")
......@@ -121,3 +121,8 @@ if(ARPACKPP_FOUND)
LIBRARIES "${ARPACKPP_LIBRARIES}"
INCLUDE_DIRS "${ARPACKPP_INCLUDE_DIRS}")
endif()
# text for feature summary
set_package_properties("ARPACKPP" PROPERTIES
DESCRIPTION "ARPACK++"
PURPOSE "C++ interface for ARPACK")
......@@ -168,8 +168,6 @@ find_package_handle_standard_args(
mark_as_advanced(SUPERLU_INCLUDE_DIR SUPERLU_LIBRARY)
set_package_info("SuperLU" "Direct linear solver library")
# if both headers and library are found, store results
if(SUPERLU_FOUND)
set(SUPERLU_INCLUDE_DIRS ${SUPERLU_INCLUDE_DIR})
......@@ -201,3 +199,8 @@ if(SUPERLU_FOUND)
LIBRARIES "${SUPERLU_DUNE_LIBRARIES}"
INCLUDE_DIRS "${SUPERLU_INCLUDE_DIRS}")
endif()
# text for feature summary
set_package_properties("SuperLU" PROPERTIES
DESCRIPTION "Supernodal LU"
PURPOSE "Direct solver for linear system, based on LU decompisition")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment