BUG: make sure libraries do not depend on themselves

This commit is contained in:
Bill Hoffman 2002-03-11 08:11:26 -05:00
parent c1dcaf342a
commit 938e6e487b
1 changed files with 13 additions and 10 deletions

View File

@ -936,18 +936,21 @@ void cmMSDotNETGenerator::OutputLibraries(std::ostream& fout,
cmTarget::LinkLibraries::const_iterator j;
for(j = libs.begin(); j != libs.end(); ++j)
{
std::string lib = j->first;
if(j->first.find(".lib") == std::string::npos)
if(j->first != libName)
{
lib += ".lib";
std::string lib = j->first;
if(j->first.find(".lib") == std::string::npos)
{
lib += ".lib";
}
lib = this->ConvertToXMLOutputPath(lib.c_str());
if (j->second == cmTarget::GENERAL
|| (j->second == cmTarget::DEBUG && strcmp(configName, "DEBUG") == 0)
|| (j->second == cmTarget::OPTIMIZED && strcmp(configName, "DEBUG") != 0))
{
fout << lib << " ";
}
}
lib = this->ConvertToXMLOutputPath(lib.c_str());
if (j->second == cmTarget::GENERAL
|| (j->second == cmTarget::DEBUG && strcmp(configName, "DEBUG") == 0)
|| (j->second == cmTarget::OPTIMIZED && strcmp(configName, "DEBUG") != 0))
{
fout << lib << " ";
}
}
}