summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-01-20 12:07:31 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-01-21 08:12:22 (GMT)
commit6063fef226d35aad0629d7098f72afa650e7a149 (patch)
tree853f68935bb251cb805c063cbbfea2d5a5dda8a9 /Source/cmake.cxx
parentaa6674831c3ea3bf3cca7c9f667d2e5c75873a3d (diff)
downloadCMake-6063fef226d35aad0629d7098f72afa650e7a149.zip
CMake-6063fef226d35aad0629d7098f72afa650e7a149.tar.gz
CMake-6063fef226d35aad0629d7098f72afa650e7a149.tar.bz2
Output include directories as LOG messages, not warnings.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx4
1 files changed, 4 insertions, 0 deletions
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";