Skip to content
Snippets Groups Projects
Commit ba58264a authored by Bill Hoffman's avatar Bill Hoffman
Browse files

BUG: handle case insensitive library extensions on windows

parent a5be6b84
No related branches found
No related tags found
No related merge requests found
#include "cmOrderLinkDirectories.h"
#include "cmSystemTools.h"
#include "cmsys/RegularExpression.hxx"
#include <ctype.h>
//-------------------------------------------------------------------
......@@ -78,6 +78,29 @@ void cmOrderLinkDirectories::FindIndividualLibraryOrders()
}
}
//-------------------------------------------------------------------
std::string cmOrderLinkDirectories::NoCaseExpression(const char* str)
{
std::string ret;
const char* s = str;
while(*s)
{
if(*s == '.')
{
ret += *s;
}
else
{
ret += "[";
ret += tolower(*s);
ret += toupper(*s);
ret += "]";
}
s++;
}
return ret;
}
//-------------------------------------------------------------------
void cmOrderLinkDirectories::CreateRegularExpressions()
{
......@@ -92,7 +115,11 @@ void cmOrderLinkDirectories::CreateRegularExpressions()
}
first = false;
libext += "\\";
#ifndef _WIN32
libext += *i;
#else
libext += this->NoCaseExpression(i->c_str());
#endif
}
libext += ").*";
cmStdString reg("(.*)");
......
......@@ -98,6 +98,7 @@ private:
std::map<cmStdString, std::vector<cmStdString> >& m);
void OrderPaths(std::vector<cmStdString>& paths);
bool FindPathNotInDirectoryToAfterList(cmStdString& path);
std::string NoCaseExpression(const char* str);
private:
// map from library to directories that it is in other than its full path
std::map<cmStdString, std::vector<cmStdString> > m_LibraryToDirectories;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment