Suppress output of trycompile

This commit is contained in:
Andy Cedilnik 2002-10-07 08:23:19 -04:00
parent fba1ca0b68
commit d5296aa85a

View File

@ -87,7 +87,7 @@ int cmGlobalVisualStudio6Generator::TryCompile(const char *,
makeCommand += " - Debug\""; makeCommand += " - Debug\"";
int retVal; int retVal;
if (!cmSystemTools::RunCommand(makeCommand.c_str(), *output, retVal)) if (!cmSystemTools::RunCommand(makeCommand.c_str(), *output, retVal, 0, false))
{ {
cmSystemTools::Error("Generator: execution of msdev failed."); cmSystemTools::Error("Generator: execution of msdev failed.");
// return to the original directory // return to the original directory
@ -326,7 +326,7 @@ void cmGlobalVisualStudio6Generator::WriteProject(std::ostream& fout,
for(;j!= jend; ++j) for(;j!= jend; ++j)
{ {
if(j->first != dspname) if(j->first != dspname)
{ {
// is the library part of this DSW ? If so add dependency // is the library part of this DSW ? If so add dependency
std::string libPath = j->first + "_CMAKE_PATH"; std::string libPath = j->first + "_CMAKE_PATH";
const char* cacheValue const char* cacheValue
@ -362,8 +362,8 @@ void cmGlobalVisualStudio6Generator::WriteProject(std::ostream& fout,
// Note, that dependencies from executables to // Note, that dependencies from executables to
// the libraries it uses are also done here // the libraries it uses are also done here
void cmGlobalVisualStudio6Generator::WriteExternalProject(std::ostream& fout, void cmGlobalVisualStudio6Generator::WriteExternalProject(std::ostream& fout,
const char* name, const char* name,
const char* location, const char* location,
const std::vector<std::string>& dependencies) const std::vector<std::string>& dependencies)
{ {
fout << "#########################################################" fout << "#########################################################"