diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-21 22:38:03 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-21 23:21:35 (GMT) |
commit | 8b4b9631f5f79ffee11b33c1e8826cd4064b3a23 (patch) | |
tree | 0f9bbb56aba29f8e5f715950c0d2ac944f29439b /Source/cmake.h | |
parent | 46656aa1fa69b79aa0c645a131d7abfdc34e621c (diff) | |
download | CMake-8b4b9631f5f79ffee11b33c1e8826cd4064b3a23.zip CMake-8b4b9631f5f79ffee11b33c1e8826cd4064b3a23.tar.gz CMake-8b4b9631f5f79ffee11b33c1e8826cd4064b3a23.tar.bz2 |
cmake: Add IssueMessage overload taking a single cmListFileContext.
Port appropriate clients to use it.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index d83c6fc..7f95fb6 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -303,6 +303,9 @@ class cmake /** Display a message to the user. */ void IssueMessage(cmake::MessageType t, std::string const& text, cmListFileBacktrace const& backtrace = cmListFileBacktrace(NULL)); + void IssueMessage(cmake::MessageType t, std::string const& text, + cmListFileContext const& lfc); + ///! run the --build option int Build(const std::string& dir, const std::string& target, |