summaryrefslogtreecommitdiffstats
path: root/Source/cmake.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-06-13 13:54:27 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-06-13 13:54:27 (GMT)
commit4e66ca1952c0ba9dfba6050f83f67c90884c8492 (patch)
treeba64a2020360c326489b43e422a1edf55489880b /Source/cmake.h
parent18e00ac7b918865c38a2e34ee584e18c1126c663 (diff)
parent23f87e8157770c56d3aa568f3d1318f9b9070364 (diff)
downloadCMake-4e66ca1952c0ba9dfba6050f83f67c90884c8492.zip
CMake-4e66ca1952c0ba9dfba6050f83f67c90884c8492.tar.gz
CMake-4e66ca1952c0ba9dfba6050f83f67c90884c8492.tar.bz2
Merge topic 'fix-cmake-ISP-violation'
23f87e81 cmake: Remove force from IssueMessage API 54c65d5f cmake: Extract DisplayMessage API.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r--Source/cmake.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index aa1ff2c..b1e2448 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -381,8 +381,10 @@ public:
/** Display a message to the user. */
void IssueMessage(
cmake::MessageType t, std::string const& text,
- cmListFileBacktrace const& backtrace = cmListFileBacktrace(),
- bool force = false) const;
+ cmListFileBacktrace const& backtrace = cmListFileBacktrace()) const;
+
+ void DisplayMessage(cmake::MessageType t, std::string const& text,
+ cmListFileBacktrace const& backtrace) const;
///! run the --build option
int Build(const std::string& dir, const std::string& target,