summaryrefslogtreecommitdiffstats
path: root/Source/cmake.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-21 22:38:03 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-05-21 23:21:35 (GMT)
commit8b4b9631f5f79ffee11b33c1e8826cd4064b3a23 (patch)
tree0f9bbb56aba29f8e5f715950c0d2ac944f29439b /Source/cmake.h
parent46656aa1fa69b79aa0c645a131d7abfdc34e621c (diff)
downloadCMake-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.h3
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,