diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-13 17:32:46 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-21 18:17:59 (GMT) |
commit | eb05dcd6c9b587eeb8738d9f08459d94733708f6 (patch) | |
tree | 63088e3acd3caf40963bf80e299f3b668e5d71d8 /Source/cmLocalGenerator.h | |
parent | cfae7fa4082e73d4282be98fa99a07c18dd53d24 (diff) | |
download | CMake-eb05dcd6c9b587eeb8738d9f08459d94733708f6.zip CMake-eb05dcd6c9b587eeb8738d9f08459d94733708f6.tar.gz CMake-eb05dcd6c9b587eeb8738d9f08459d94733708f6.tar.bz2 |
cmLocalGenerator: Add IssueMessage method.
For use at generate-time instead of the cmMakefile method of the same name.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 6a8c5aa..4452eef 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -14,6 +14,7 @@ #include "cmStandardIncludes.h" #include "cmState.h" +#include "cmake.h" #include "cmOutputConverter.h" class cmMakefile; @@ -304,6 +305,9 @@ public: bool IsMinGWMake() const; bool IsNMake() const; + void IssueMessage(cmake::MessageType t, std::string const& text) const; + + void ComputeObjectMaxPath(); protected: ///! put all the libraries for a target on into the given stream |