ENH: Add support to find_library to transform /lib to /lib32 on some architectures.

This commit is contained in:
Brad King
2008-01-21 18:30:36 -05:00
parent a28b197b11
commit 16247cbfc3
2 changed files with 51 additions and 1 deletions

View File

@@ -65,7 +65,8 @@ public:
cmTypeMacro(cmFindLibraryCommand, cmFindBase);
protected:
void AddLib64Paths();\
void AddLib32Paths();
void AddLib64Paths();
std::string FindLibrary(const char* name);
};