limit library search to appropriate extensions

This commit is contained in:
Ken Martin 2001-07-18 11:40:23 -04:00
parent 6c757d2715
commit 212dfb1b8e
1 changed files with 3 additions and 0 deletions

View File

@ -942,6 +942,7 @@ std::string cmSystemTools::FindLibrary(const char* name,
for(std::vector<std::string>::const_iterator p = path.begin();
p != path.end(); ++p)
{
#if defined(_WIN32) && !defined(__CYGWIN__)
tryPath = *p;
tryPath += "/";
tryPath += name;
@ -950,6 +951,7 @@ std::string cmSystemTools::FindLibrary(const char* name,
{
return cmSystemTools::CollapseFullPath(tryPath.c_str());
}
#else
tryPath = *p;
tryPath += "/lib";
tryPath += name;
@ -974,6 +976,7 @@ std::string cmSystemTools::FindLibrary(const char* name,
{
return cmSystemTools::CollapseFullPath(tryPath.c_str());
}
#endif
}
// Couldn't find the library.