diff options
author | David Cole <david.cole@kitware.com> | 2008-07-30 19:26:34 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2008-07-30 19:26:34 (GMT) |
commit | 17452105cd4a2d5cb22591171e462559c6127507 (patch) | |
tree | f39d9eb8c3bcb7cf719bc639247d2637cdb328a7 /Source/cmCallVisualStudioMacro.h | |
parent | beeebcdc407eda8d29ff342f1570af4740e600ee (diff) | |
download | CMake-17452105cd4a2d5cb22591171e462559c6127507.zip CMake-17452105cd4a2d5cb22591171e462559c6127507.tar.gz CMake-17452105cd4a2d5cb22591171e462559c6127507.tar.bz2 |
BUG: Fix issue #7088 - do not emit error messages when attempts to run Visual Studio macros fail. You can still get the error output as messages if you want using --debug-output from the cmake command line.
Diffstat (limited to 'Source/cmCallVisualStudioMacro.h')
-rw-r--r-- | Source/cmCallVisualStudioMacro.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmCallVisualStudioMacro.h b/Source/cmCallVisualStudioMacro.h index ea3cc10..44f6e55 100644 --- a/Source/cmCallVisualStudioMacro.h +++ b/Source/cmCallVisualStudioMacro.h @@ -33,7 +33,8 @@ public: ///! macro in each Visual Studio instance. static int CallMacro(const std::string& slnFile, const std::string& macro, - const std::string& args); + const std::string& args, + const bool logErrorsAsMessages); ///! Count the number of running instances of Visual Studio with the ///! given solution file open. Pass "ALL" for slnFile to count all |