diff options
author | click <click@gonnamakeyou.com> | 2011-01-08 13:04:47 +0100 |
---|---|---|
committer | click <click@gonnamakeyou.com> | 2011-01-08 13:04:47 +0100 |
commit | 60595e5c9f900dc4b0980ad703bc5a04ffe0e50b (patch) | |
tree | 960c08e5bef789ba125f13ac3fed38d9253cdb91 /cmake/macros/FindOpenSSL.cmake | |
parent | df602e955e84f13b850e37418642e5d6f7ee4661 (diff) |
Buildsystem: Add fallback-location directories for OpenSSL detection under Windows-platforms
Diffstat (limited to 'cmake/macros/FindOpenSSL.cmake')
-rw-r--r-- | cmake/macros/FindOpenSSL.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmake/macros/FindOpenSSL.cmake b/cmake/macros/FindOpenSSL.cmake index c9c426726de..245a91d4199 100644 --- a/cmake/macros/FindOpenSSL.cmake +++ b/cmake/macros/FindOpenSSL.cmake @@ -33,11 +33,14 @@ SET(_OPENSSL_ROOT_HINTS IF(PLATFORM EQUAL 64) SET(_OPENSSL_ROOT_PATHS "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (64-bit)_is1;InstallLocation]" + "C:/OpenSSL-Win64/" + "C:/OpenSSL/" ) ELSE() SET(_OPENSSL_ROOT_PATHS "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]" + "C:/OpenSSL/" ) ENDIF() |