From a5f8762570f205ae2f7dcf87f486f19f33cc8fcf Mon Sep 17 00:00:00 2001 From: Federico Hernandez Date: Sat, 8 Jan 2011 21:25:18 +0100 Subject: [PATCH] Msg for sha1 searching in cmake --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 326124948..91c267c53 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,10 +4,12 @@ include (CheckFunctionExists) project (task) set (PROJECT_VERSION "1.9.4") +message ("-- Looking for SHA1 references") if (EXISTS .git/index) set (HAVE_COMMIT true) execute_process (COMMAND git log -1 --pretty=format:%h OUTPUT_VARIABLE COMMIT) + message ("-- Found SHA1 reference: ${COMMIT}") endif (EXISTS .git/index)