diff options
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index b7a5b9b..a744b94 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -116,6 +116,12 @@ public: void SetUnixCD(bool v) {m_UnixCD = v;} /** + * Set Support Verbose Variable. If true, then .SILENT will + * be not end with : i.e. .SILENT: or .SILENT + */ + void SetSilentNoColon(bool v) {m_SilentNoColon = v;} + + /** * Set the string used to include one makefile into another default * is include. */ @@ -365,6 +371,7 @@ private: bool m_DefineWindowsNULL; bool m_UnixCD; bool m_PassMakeflags; + bool m_SilentNoColon; //========================================================================== // Flag for whether echo command needs quotes. |