diff options
author | Brad King <brad.king@kitware.com> | 2008-01-21 23:30:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-21 23:30:36 (GMT) |
commit | 16247cbfc35607b62f175820fb90dc69fca9e3cb (patch) | |
tree | d0a37733727762c68decc247d0fd96a3b95de64c /Source/cmFindLibraryCommand.h | |
parent | a28b197b11f4b647c67a6914c731077972449343 (diff) | |
download | CMake-16247cbfc35607b62f175820fb90dc69fca9e3cb.zip CMake-16247cbfc35607b62f175820fb90dc69fca9e3cb.tar.gz CMake-16247cbfc35607b62f175820fb90dc69fca9e3cb.tar.bz2 |
ENH: Add support to find_library to transform /lib to /lib32 on some architectures.
Diffstat (limited to 'Source/cmFindLibraryCommand.h')
-rw-r--r-- | Source/cmFindLibraryCommand.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmFindLibraryCommand.h b/Source/cmFindLibraryCommand.h index 88bbb32..a0f2338 100644 --- a/Source/cmFindLibraryCommand.h +++ b/Source/cmFindLibraryCommand.h @@ -65,7 +65,8 @@ public: cmTypeMacro(cmFindLibraryCommand, cmFindBase); protected: - void AddLib64Paths();\ + void AddLib32Paths(); + void AddLib64Paths(); std::string FindLibrary(const char* name); }; |