diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-12-07 19:17:50 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-12-07 19:40:21 (GMT) |
commit | 88cd4c1e923817f0a38bbc9d14d0bf40a2151897 (patch) | |
tree | 4aabf4ecf40bafc6dfd1dda639707797259310aa /Source/cmMakefile.cxx | |
parent | 3c3b98ddd384214d191c1b061f8c7eba6845810d (diff) | |
download | CMake-88cd4c1e923817f0a38bbc9d14d0bf40a2151897.zip CMake-88cd4c1e923817f0a38bbc9d14d0bf40a2151897.tar.gz CMake-88cd4c1e923817f0a38bbc9d14d0bf40a2151897.tar.bz2 |
Use 'CMake Warning' versus 'warning' for CDash
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index ed435da..016d5fe 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1800,7 +1800,7 @@ void cmMakefile::CheckForUnused(const char* reason, const char* name) const { cmOStringStream msg; msg << path << ":" << line << ":" << - " warning: (" << reason << ") unused variable \'" << name << "\'"; + " CMake Warning: (" << reason << ") unused variable \'" << name << "\'"; cmSystemTools::Message(msg.str().c_str()); } } |