Make VTK-m CMake output no extra information when configuring

This commit is contained in:
Robert Maynard 2018-01-16 17:23:42 -05:00
parent 0ea06bfdb7
commit 4f131d8223
2 changed files with 2 additions and 3 deletions

@ -58,7 +58,6 @@ function(determine_version source_dir git_command var_prefix)
endif()
extract_version_components("${output}" tmp)
if(DEFINED tmp_VERSION)
message(STATUS "Determined Source Version : ${tmp_VERSION_FULL}")
if (NOT "${tmp_VERSION}" STREQUAL "${${var_prefix}_VERSION}")
message(WARNING
"Version from git (${tmp_VERSION}) disagrees with hard coded version (${${var_prefix}_VERSION}). Either update the git tags or version.txt.")

@ -168,12 +168,12 @@ if (VTKm_ENABLE_TESTING)
#-----------------------------------------------------------------------------
# Find the Python interpreter, which we will use during the build process
find_package(PythonInterp)
find_package(PythonInterp QUIET)
#-----------------------------------------------------------------------------
# Find Pyexpander in case somebody wants to update the auto generated
# faux variadic template code
find_package(Pyexpander)
find_package(Pyexpander QUIET)
endif (VTKm_ENABLE_TESTING)
#-----------------------------------------------------------------------------