diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-17 13:38:41 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-17 13:38:41 (GMT) |
commit | 66523061d0d35b80dcc4a5c19d43a93cb455e58b (patch) | |
tree | b8ee4d79c121de33762257500beaa54875afc325 /Source | |
parent | fad49c87246d190e66fc60c1ac2698740215ef16 (diff) | |
download | CMake-66523061d0d35b80dcc4a5c19d43a93cb455e58b.zip CMake-66523061d0d35b80dcc4a5c19d43a93cb455e58b.tar.gz CMake-66523061d0d35b80dcc4a5c19d43a93cb455e58b.tar.bz2 |
ENH: remove warnings and debug statement
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 4 | ||||
-rw-r--r-- | Source/cmLocalGenerator.cxx | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index decdbaf..2bed855 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -130,14 +130,10 @@ void cmGlobalXCodeGenerator::EnableLanguage(std::vector<std::string>const& mf->GetDefinition("CMAKE_OSX_SYSROOT"); if(osxArch && sysroot) { - std::cerr <<"EnableLanguage archs\n"; this->Architectures.clear(); cmSystemTools::ExpandListArgument(std::string(osxArch), this->Architectures); } - else - std::cerr <<"no EnableLanguage archs\n"; - } //---------------------------------------------------------------------------- diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index abb2328..3e07a24 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -2400,9 +2400,9 @@ std::string cmLocalGenerator::EscapeForShell(const char* str, bool makeVars, return std::string(&arg[0]); } void -cmLocalGenerator::GetTargetObjectFileDirectories(cmTarget* target, +cmLocalGenerator::GetTargetObjectFileDirectories(cmTarget* , std::vector<std::string>& - dirs) + ) { cmSystemTools::Error("GetTargetObjectFileDirectories called on cmLocalGenerator"); } |