Skip to content
Snippets Groups Projects
Commit b803ef27 authored by Christoph Grüninger's avatar Christoph Grüninger Committed by Timo Koch
Browse files

[cmake] Add entries to feature summary for find scripts

Adds a description and the purpose of searched packages.
parent 867a3557
No related branches found
No related tags found
2 merge requests!677Feature/fix cmake warnings,!617[WIP] Next
......@@ -98,3 +98,7 @@ if(GLPK_FOUND)
LIBRARIES "${GLPK_DUNE_LIBRARIES}"
INCLUDE_DIRS "${GLPK_INCLUDE_DIRS}")
endif()
# text for feature summary
set_package_properties("GLPK" PROPERTIES
DESCRIPTION "GNU Linear Programming Kit")
......@@ -43,3 +43,8 @@ find_package_handle_standard_args(
# set macros for config.h
set(HAVE_GSTAT ${GSTAT_FOUND})
set(GSTAT_EXECUTABLE ${GSTAT_EXECUTABLE})
# text for feature summary
set_package_properties("Gstat" PROPERTIES
DESCRIPTION "Geostatistic library"
PURPOSE "Generate random permeability and porosity fields")
......@@ -99,3 +99,7 @@ if(NLOPT_FOUND)
LIBRARIES "${NLOPT_DUNE_LIBRARIES}"
INCLUDE_DIRS "${NLOPT_INCLUDE_DIRS}")
endif()
# text for feature summary
set_package_properties("NLOPT" PROPERTIES
DESCRIPTION "Library for nonlinear optimization")
......@@ -43,3 +43,8 @@ find_package_handle_standard_args(
# set macros for config.h
set(HAVE_PVPYTHON ${PVPYTHON_FOUND})
set(PVPYTHON_EXECUTABLE ${PVPYTHON_EXECUTABLE})
# text for feature summary
set_package_properties("PVPython" PROPERTIES
DESCRIPTION "ParaView python client"
PURPOSE "Extract data over line or time in post-processing")
......@@ -38,3 +38,8 @@ set(HAVE_VALGRIND ${Valgrind_FOUND})
if(Valgrind_FOUND)
dune_register_package_flags(INCLUDE_DIRS "${VALGRIND_INCLUDE_DIR}")
endif()
# text for feature summary
set_package_properties("Valgrind" PROPERTIES
DESCRIPTION "Memory debugging, memory leak detection, profiling"
PURPOSE "Identify undefined variables with Memcheck")
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