diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-15 22:45:33 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-15 22:45:33 (GMT) |
commit | d2b84627dee26ede5dc4116e4c3bcede6847d789 (patch) | |
tree | c52c040dca18826c01b05fc5daf8e22c2cad3951 /Source/cmNMakeMakefileGenerator.cxx | |
parent | 407afb906c6f3627d14acd959fb518d16caa5d7b (diff) | |
download | CMake-d2b84627dee26ede5dc4116e4c3bcede6847d789.zip CMake-d2b84627dee26ede5dc4116e4c3bcede6847d789.tar.gz CMake-d2b84627dee26ede5dc4116e4c3bcede6847d789.tar.bz2 |
ENH: remove debug prints
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.cxx')
-rw-r--r-- | Source/cmNMakeMakefileGenerator.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/cmNMakeMakefileGenerator.cxx b/Source/cmNMakeMakefileGenerator.cxx index 00e90f6..38efd2c 100644 --- a/Source/cmNMakeMakefileGenerator.cxx +++ b/Source/cmNMakeMakefileGenerator.cxx @@ -237,13 +237,11 @@ OutputBuildObjectFromSource(std::ostream& fout, std::string comment = "Build "; std::string objectFile = std::string(shortName) + this->GetOutputExtension(source.GetSourceExtension().c_str()); - std::cerr << "short name objectfile " << objectFile.c_str() << " " << shortName << "\n"; comment += objectFile + " From "; comment += source.GetFullPath(); std::string compileCommand; std::string ext = source.GetSourceExtension(); - std::cerr << "ext " << ext.c_str() << "\n"; if(ext == "c" ) { compileCommand = "$(CMAKE_C_COMPILER) $(CMAKE_CFLAGS) "; @@ -266,15 +264,15 @@ OutputBuildObjectFromSource(std::ostream& fout, } else if (ext == "def") { - std::cerr << "def file " << source.GetFullPath() << "\n"; + // *** do something here?? } else if (ext == "ico") { - std::cerr << "ico file " << source.GetFullPath() << "\n"; + // do something here?? } else if (ext == "rc2") { - std::cerr << "rc2 file " << source.GetFullPath() << "\n"; + // do something here?? } // assume c++ if not c rc or def else |