summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.h9
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;