ENH: look in the windows LIB env variable for libraries

This commit is contained in:
Bill Hoffman 2004-10-27 16:00:54 -04:00
parent 3dc02020d9
commit b69606da4c
1 changed files with 1 additions and 0 deletions

View File

@ -2213,6 +2213,7 @@ std::string cmMakefile::FindLibrary(const char* name,
// Add the system search path to our path.
std::vector<std::string> path;
cmSystemTools::GetPath(path, "CMAKE_LIBRARY_PATH");
cmSystemTools::GetPath(path, "LIB");
cmSystemTools::GetPath(path);
// now add the path
path.insert(path.end(), userPaths.begin(), userPaths.end());