diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-23 15:48:35 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-23 15:48:35 (GMT) |
commit | 32c403f6654c26d9a5c81badbe817327229e6e71 (patch) | |
tree | fe96db9f49fe985a5c4c60607cece7f36b8ecdfb /Source | |
parent | 12dc64c7f5a6ee7a83e010fbb4df36eb3080b864 (diff) | |
download | CMake-32c403f6654c26d9a5c81badbe817327229e6e71.zip CMake-32c403f6654c26d9a5c81badbe817327229e6e71.tar.gz CMake-32c403f6654c26d9a5c81badbe817327229e6e71.tar.bz2 |
ENH: Remove debug
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 8 | ||||
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 11 |
2 files changed, 0 insertions, 19 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 51481b7..25ba47d 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -687,14 +687,6 @@ void cmGlobalGenerator::Generate() } } } - { - cmTargets::iterator tarIt; - std::cout << "Global targets:" << std::endl; - for ( tarIt = globalTargets.begin(); tarIt != globalTargets.end(); ++ tarIt ) - { - std::cout << "* " << tarIt->first.c_str() << std::endl; - } - } // Generate project files for (i = 0; i < m_LocalGenerators.size(); ++i) diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 6fda8fa..13cd316 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1272,21 +1272,10 @@ void cmLocalUnixMakefileGenerator3 depends.push_back("all"); } this->AppendEcho(commands, text); - size_t cc; - std::cout << "Target: " << text << std::endl; - for ( cc = 0; cc < depends.size(); ++ cc ) - { - std::cout << " Depends [" << depends[cc].c_str() << "]" << std::endl; - } // Utility targets store their rules in pre- and post-build commands. this->AppendCustomDepends(depends, glIt->second.GetPreBuildCommands()); this->AppendCustomDepends(depends, glIt->second.GetPostBuildCommands()); - std::cout << "Target: " << text << std::endl; - for ( cc = 0; cc < depends.size(); ++ cc ) - { - std::cout << " Depends [" << depends[cc].c_str() << "]" << std::endl; - } this->AppendCustomCommands(commands, glIt->second.GetPreBuildCommands()); this->AppendCustomCommands(commands, glIt->second.GetPostBuildCommands()); this->WriteMakeRule(ruleFileStream, targetString.c_str(), glIt->first.c_str(), depends, commands, false); |