summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio6Generator.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-07 12:23:19 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-07 12:23:19 (GMT)
commitd5296aa85a6fe79da2154e447cf65d9b1dfa28d0 (patch)
tree9e86d7b64a26b3e7aa26e1007de1561a88c59c43 /Source/cmGlobalVisualStudio6Generator.cxx
parentfba1ca0b6858bf4a036fb8f627d5b8b317831823 (diff)
downloadCMake-d5296aa85a6fe79da2154e447cf65d9b1dfa28d0.zip
CMake-d5296aa85a6fe79da2154e447cf65d9b1dfa28d0.tar.gz
CMake-d5296aa85a6fe79da2154e447cf65d9b1dfa28d0.tar.bz2
Suppress output of trycompile
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio6Generator.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx
index 7969cdf..497eda7 100644
--- a/Source/cmGlobalVisualStudio6Generator.cxx
+++ b/Source/cmGlobalVisualStudio6Generator.cxx
@@ -87,7 +87,7 @@ int cmGlobalVisualStudio6Generator::TryCompile(const char *,
makeCommand += " - Debug\"";
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.");
// return to the original directory
@@ -326,7 +326,7 @@ void cmGlobalVisualStudio6Generator::WriteProject(std::ostream& fout,
for(;j!= jend; ++j)
{
if(j->first != dspname)
- {
+ {
// is the library part of this DSW ? If so add dependency
std::string libPath = j->first + "_CMAKE_PATH";
const char* cacheValue
@@ -362,8 +362,8 @@ void cmGlobalVisualStudio6Generator::WriteProject(std::ostream& fout,
// Note, that dependencies from executables to
// the libraries it uses are also done here
void cmGlobalVisualStudio6Generator::WriteExternalProject(std::ostream& fout,
- const char* name,
- const char* location,
+ const char* name,
+ const char* location,
const std::vector<std::string>& dependencies)
{
fout << "#########################################################"