Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
b803ef27
Commit
b803ef27
authored
Dec 17, 2017
by
Christoph Grüninger
Committed by
Timo Koch
Dec 18, 2017
Browse files
[cmake] Add entries to feature summary for find scripts
Adds a description and the purpose of searched packages.
parent
867a3557
Changes
5
Hide whitespace changes
Inline
Side-by-side
cmake/modules/FindGLPK.cmake
View file @
b803ef27
...
...
@@ -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"
)
cmake/modules/FindGstat.cmake
View file @
b803ef27
...
...
@@ -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"
)
cmake/modules/FindNLOPT.cmake
View file @
b803ef27
...
...
@@ -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"
)
cmake/modules/FindPVPython.cmake
View file @
b803ef27
...
...
@@ -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"
)
cmake/modules/FindValgrind.cmake
View file @
b803ef27
...
...
@@ -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"
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment