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/cmake.cxx | |
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/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index e9ccf06..df95155 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1181,7 +1181,7 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args) << " s. (clock)" << "\n"; return 0; - } + } // Command to calculate the md5sum of a file else if (args[1] == "md5sum" && args.size() >= 3) @@ -1422,7 +1422,8 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args) } } - return cmCallVisualStudioMacro::CallMacro(args[2], args[3], macroArgs); + return cmCallVisualStudioMacro::CallMacro(args[2], args[3], + macroArgs, true); } #endif |