diff options
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 47f31db..69e4900 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -152,7 +152,10 @@ public: std::string GetRecursiveMakeCall(const char *makefile, const char* tgt); // append an echo command - void AppendEcho(std::vector<std::string>& commands, const char* text); + enum EchoColor { EchoNormal, EchoDepend, EchoBuild, EchoLink, + EchoGenerate, EchoGlobal }; + void AppendEcho(std::vector<std::string>& commands, const char* text, + EchoColor color = EchoNormal); static std::string GetTargetDirectory(cmTarget& target); |