ENH: fix lib case bug correctly
This commit is contained in:
parent
13bb9a9041
commit
6a73e8ac69
|
@ -889,7 +889,17 @@ void cmLocalVisualStudio7Generator::OutputLibraries(std::ostream& fout,
|
|||
debugPostfix = m_Makefile->GetDefinition("CMAKE_DEBUG_POSTFIX");
|
||||
}
|
||||
}
|
||||
if(j->first.find(".lib") == std::string::npos)
|
||||
// chop off the last 4 chars of the library string
|
||||
|
||||
std::string lowerCaseLibExt = j->first;
|
||||
if(lowerCaseLibExt.size() > 4)
|
||||
{
|
||||
lowerCaseLibExt = j->first.substr(j->first.size()-4, 4);
|
||||
}
|
||||
// lower case the extension
|
||||
lowerCaseLibExt = cmSystemTools::LowerCase(lowerCaseLibExt);
|
||||
// now check to see if it was a .lib, if not then add a .lib
|
||||
if(lowerCaseLibExt != ".lib")
|
||||
{
|
||||
lib += debugPostfix + ".lib";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue