diff options
| author | Shauren <none@none> | 2010-06-15 20:06:05 +0200 |
|---|---|---|
| committer | Shauren <none@none> | 2010-06-15 20:06:05 +0200 |
| commit | 05178900dbe6cc5b1357f7effce6381e9b2e8372 (patch) | |
| tree | 383aadb1a1f3284365b9e6638e8b86517fb5cb48 | |
| parent | d63b601f61b06f50fb18ae4f45fb54de03094e12 (diff) | |
Add support for detecting openssl with cmake using registry (windows)
--HG--
branch : trunk
| -rw-r--r-- | cmake/FindOpenSSL.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/FindOpenSSL.cmake b/cmake/FindOpenSSL.cmake index f4d48e8122e..ed72fd7527a 100644 --- a/cmake/FindOpenSSL.cmake +++ b/cmake/FindOpenSSL.cmake @@ -26,6 +26,7 @@ else( OPENSSL_INCLUDE_DIRECTORIES AND OPENSSL_LIBRARIES ) /usr/local/openssl/include "C:/OpenSSL/include/openssl" "C:/OpenSSL-Win32/include/openssl" + "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]/include/openssl" DOC "Specify the directory containing openssl.h." ) @@ -46,6 +47,7 @@ else( OPENSSL_INCLUDE_DIRECTORIES AND OPENSSL_LIBRARIES ) /usr/local/ssl/lib "C:/OpenSSL/lib" "C:/OpenSSL-Win32/lib" + "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]/lib" DOC "Specify the OpenSSL library here." ) |
