Removed debug output

This commit is contained in:
Sebastian Messmer 2016-02-12 10:16:52 +01:00
parent ffcc343609
commit 19bc87ea30
2 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,6 @@ function(_SET_GITVERSION_CMAKE_VARIABLE OUTPUT_VARIABLE)
STRING(REGEX REPLACE ".*VERSION_STRING = \"([^\"]*)\".*" "\\1" VERSION_STRING "${VERSION_H_FILE_CONTENT}")
MESSAGE(STATUS "Version from git: ${VERSION_STRING}")
SET(${OUTPUT_VARIABLE} "${VERSION_STRING}" CACHE INTERNAL "${OUTPUT_VARIABLE}")
MESSAGE(STATUS "Output: ${OUTPUT_VARIABLE}: ${${OUTPUT_VARIABLE}}")
endfunction(_SET_GITVERSION_CMAKE_VARIABLE)
######################################################

View File

@ -1,6 +1,9 @@
include(CTest)
if (BUILD_TESTING)
function(install)
# Do nothing. Disable cmake install() commands in googletest.
endfunction()
add_subdirectory(gtest-1.7.0)
project (googletest)