This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  f627eb31c0a39cd8b619ebfe3742bf9f836cd422 (commit)
       via  6bddaa0828716ab5d581e286ad93c919fb571044 (commit)
      from  d47c6c0bd03502146f6cedbbcd6806c050bbd5d7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f627eb31c0a39cd8b619ebfe3742bf9f836cd422
commit f627eb31c0a39cd8b619ebfe3742bf9f836cd422
Merge: d47c6c0 6bddaa0
Author:     Stephen Kelly <steve...@gmail.com>
AuthorDate: Sun Jan 20 07:12:03 2013 -0500
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Sun Jan 20 07:12:03 2013 -0500

    Merge topic 'clean-include-dirs-debugging' into next
    
    6bddaa0 Output include directories as LOG messages, not warnings.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6bddaa0828716ab5d581e286ad93c919fb571044
commit 6bddaa0828716ab5d581e286ad93c919fb571044
Author:     Stephen Kelly <steve...@gmail.com>
AuthorDate: Sun Jan 20 13:07:31 2013 +0100
Commit:     Stephen Kelly <steve...@gmail.com>
CommitDate: Sun Jan 20 13:10:17 2013 +0100

    Output include directories as LOG messages, not warnings.

diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 2eecfba..932c996 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -4394,6 +4394,10 @@ void cmake::IssueMessage(cmake::MessageType t, 
std::string const& text,
     isError = true;
     msg << "CMake Internal Error (please report a bug)";
     }
+  else if(t == cmake::LOG)
+    {
+    msg << "CMake Debug Log";
+    }
   else
     {
     msg << "CMake Warning";
diff --git a/Tests/RunCMake/include_directories/DebugIncludes-stderr.txt 
b/Tests/RunCMake/include_directories/DebugIncludes-stderr.txt
index 379174a..736fe69 100644
--- a/Tests/RunCMake/include_directories/DebugIncludes-stderr.txt
+++ b/Tests/RunCMake/include_directories/DebugIncludes-stderr.txt
@@ -1,4 +1,4 @@
-CMake Warning at DebugIncludes.cmake:8 \(include_directories\):
+CMake Debug Log at DebugIncludes.cmake:8 \(include_directories\):
   Used includes for target lll:
 
    \* .*/Tests/RunCMake/include_directories/one
@@ -7,7 +7,7 @@ CMake Warning at DebugIncludes.cmake:8 \(include_directories\):
 Call Stack \(most recent call first\):
   CMakeLists.txt:3 \(include\)
 +
-CMake Warning at DebugIncludes.cmake:13 \(set_property\):
+CMake Debug Log at DebugIncludes.cmake:13 \(set_property\):
   Used includes for target lll:
 
    \* .*/Tests/RunCMake/include_directories/three
@@ -15,7 +15,7 @@ CMake Warning at DebugIncludes.cmake:13 \(set_property\):
 Call Stack \(most recent call first\):
   CMakeLists.txt:3 \(include\)
 +
-CMake Warning at DebugIncludes.cmake:18 \(include_directories\):
+CMake Debug Log at DebugIncludes.cmake:18 \(include_directories\):
   Used includes for target lll:
 
    \* .*/Tests/RunCMake/include_directories/four
@@ -23,7 +23,7 @@ CMake Warning at DebugIncludes.cmake:18 
\(include_directories\):
 Call Stack \(most recent call first\):
   CMakeLists.txt:3 \(include\)
 +
-CMake Warning at DebugIncludes.cmake:25 \(set_property\):
+CMake Debug Log at DebugIncludes.cmake:25 \(set_property\):
   Used includes for target lll:
 
    \* .*/Tests/RunCMake/include_directories/five

-----------------------------------------------------------------------

Summary of changes:
 Source/cmake.cxx                                   |    4 ++++
 .../include_directories/DebugIncludes-stderr.txt   |    8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to