CREATE_PROJECT: Fix Visual Studio linking problems after Munt merge
This commit is contained in:
parent
1194341b69
commit
bbef10c068
3 changed files with 11 additions and 4 deletions
|
@ -1527,7 +1527,8 @@ void ProjectProvider::addFilesToProject(const std::string &dir, std::ofstream &p
|
|||
StringList duplicate;
|
||||
|
||||
for (StringList::const_iterator i = includeList.begin(); i != includeList.end(); ++i) {
|
||||
const std::string fileName = getLastPathComponent(*i);
|
||||
std::string fileName = getLastPathComponent(*i);
|
||||
std::transform(fileName.begin(), fileName.end(), fileName.begin(), tolower);
|
||||
|
||||
// Leave out non object file names.
|
||||
if (fileName.size() < 2 || fileName.compare(fileName.size() - 2, 2, ".o"))
|
||||
|
@ -1540,7 +1541,9 @@ void ProjectProvider::addFilesToProject(const std::string &dir, std::ofstream &p
|
|||
// Search for duplicates
|
||||
StringList::const_iterator j = i; ++j;
|
||||
for (; j != includeList.end(); ++j) {
|
||||
if (fileName == getLastPathComponent(*j)) {
|
||||
std::string candidateFileName = getLastPathComponent(*j);
|
||||
std::transform(candidateFileName.begin(), candidateFileName.end(), candidateFileName.begin(), tolower);
|
||||
if (fileName == candidateFileName) {
|
||||
duplicate.push_back(fileName);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue