diff options
author | Brad King <brad.king@kitware.com> | 2006-10-05 18:51:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-10-05 18:51:20 (GMT) |
commit | 7e92f0b4e449057bff26579596ccd11ee8c3c7e3 (patch) | |
tree | 3e1283ab96edf3a196309f88895ad1da00d496c9 /Source/cmLocalUnixMakefileGenerator3.h | |
parent | 5341711012b8d3787d154a5c2e04ead5aa920edd (diff) | |
download | CMake-7e92f0b4e449057bff26579596ccd11ee8c3c7e3.zip CMake-7e92f0b4e449057bff26579596ccd11ee8c3c7e3.tar.gz CMake-7e92f0b4e449057bff26579596ccd11ee8c3c7e3.tar.bz2 |
BUG: Hack to make echo command work properly in mingw32-make.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 260f2aa..e79065d 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -131,6 +131,14 @@ public: void SetSilentNoColon(bool v) {this->SilentNoColon = v;} /** + * Set the command to use for native make shell echo. The value + * should include all parts of the command up to the beginning of + * the message (including a whitespace separator). + */ + void SetNativeEchoCommand(const char* cmd) + { this->NativeEchoCommand = cmd; } + + /** * Set the string used to include one makefile into another default * is include. */ @@ -332,6 +340,7 @@ private: std::string ExecutableOutputPath; std::string LibraryOutputPath; std::string ConfigurationName; + std::string NativeEchoCommand; bool DefineWindowsNULL; bool UnixCD; bool PassMakeflags; |