diff options
author | Brad King <brad.king@kitware.com> | 2007-12-18 14:50:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-12-18 14:50:08 (GMT) |
commit | 872553de7e729788242da37124f41e40228c6f13 (patch) | |
tree | 1bb9aaa4a3fa205c260f09b8eaa80efba79ec7ac /Source/cmLocalUnixMakefileGenerator3.h | |
parent | 42bad89fe7ba61bed1f0ba293e8497970df2cef0 (diff) | |
download | CMake-872553de7e729788242da37124f41e40228c6f13.zip CMake-872553de7e729788242da37124f41e40228c6f13.tar.gz CMake-872553de7e729788242da37124f41e40228c6f13.tar.bz2 |
ENH: Implemented generation of display for pre-build, pre-link, and post-build custom command comments during the build. This addresses issue #5353.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index dfb3641..671d768 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -313,7 +313,8 @@ protected: void AppendCustomCommands(std::vector<std::string>& commands, const std::vector<cmCustomCommand>& ccs); void AppendCustomCommand(std::vector<std::string>& commands, - const cmCustomCommand& cc); + const cmCustomCommand& cc, + bool echo_comment=false); void AppendCleanCommand(std::vector<std::string>& commands, const std::vector<std::string>& files, cmTarget& target, const char* filename =0); |