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/cmake.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/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index d9217ff..8c12ca9 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -4511,7 +4511,7 @@ void cmake::RunCheckForUnusedVariables(const std::string& reason) const { if(!it->second) { - std::string message = "warning: The variable, '" + it->first + + std::string message = "CMake Warning: The variable, '" + it->first + "', given on the command line, was not used during the " + reason + "."; cmSystemTools::Message(message.c_str()); |