Skip to content
Snippets Groups Projects
Commit a0da08a3 authored by Thomas Fetzer's avatar Thomas Fetzer
Browse files

Merge branch 'fix/restore-mistakenly-removed-FindValgrind.cmake' into 'master'

[cmake,valgrind] Bring back mistakenly removed FindValgrind.cmake

The removal happend in 37dbc358 ;)

See merge request !319
parents 61551d26 fbd6c3ab
No related branches found
No related tags found
4 merge requests!600[WIP][components][plotproperties] Add a source file to plot properties of some components,!501Freeflow/turbulenceproperties,!492Resolve "Inconsistent `index()` method of the different `SubControlVolume` classes",!319[cmake,valgrind] Bring back mistakenly removed FindValgrind.cmake
...@@ -4,6 +4,7 @@ set(modules ...@@ -4,6 +4,7 @@ set(modules
DumuxDoxygen.cmake DumuxDoxygen.cmake
DumuxMacros.cmake DumuxMacros.cmake
DumuxTestMacros.cmake DumuxTestMacros.cmake
FindGstat.cmake) FindGstat.cmake
FindValgrind.cmake)
include(GNUInstallDirs) include(GNUInstallDirs)
install(FILES ${modules} DESTINATION ${DUNE_INSTALL_MODULEDIR}) install(FILES ${modules} DESTINATION ${DUNE_INSTALL_MODULEDIR})
#
# Module that checks whether Valgrind's header memcheck.h is present
#
# Variables used by this module which you may want to set:
# VALGRIND_ROOT Path list to search for memcheck.h
#
# Sets the follwing variable:
#
# Valgrind_FOUND True if Valgrind was found
# VALGRIND_INCLUDE_DIR Path to Valgrind's include dirs.
# look for header files, only at positions given by the user
find_path(VALGRIND_INCLUDE_DIR
NAMES "valgrind/memcheck.h"
PATHS ${VALGRIND_ROOT}
PATH_SUFFIXES "include"
NO_DEFAULT_PATH
)
# look for header files, including default paths
find_path(VALGRIND_INCLUDE_DIR
NAMES "valgrind/memcheck.h"
PATH_SUFFIXES "include"
)
# handle package arguments
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
"Valgrind"
DEFAULT_MSG
VALGRIND_INCLUDE_DIR
)
# set HAVE_VALGRIND for config.h
set(HAVE_VALGRIND ${Valgrind_FOUND})
# register all Valgrind related flags
if(Valgrind_FOUND)
dune_register_package_flags(INCLUDE_DIRS "${VALGRIND_INCLUDE_DIR}")
endif()
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