From d4597f9e8b7bc8f38fa82642747d40a6fce8d81c Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 18 Jan 2016 10:11:36 -0800 Subject: [PATCH] Revert "comment out manual ssleay copying" This reverts commit 0355e816b06ec0909ce52f26287ae244b7a3dc45. --- cmake/macros/ManuallyInstallSSLEay.cmake | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cmake/macros/ManuallyInstallSSLEay.cmake b/cmake/macros/ManuallyInstallSSLEay.cmake index eef5ab0ed7..405bf6b1d3 100644 --- a/cmake/macros/ManuallyInstallSSLEay.cmake +++ b/cmake/macros/ManuallyInstallSSLEay.cmake @@ -18,11 +18,11 @@ macro(manually_install_ssl_eay) # so we have to call find_package(OpenSSL) here even though this target may not specifically need it find_package(OpenSSL REQUIRED) - # install( - # FILES $<$:${SSL_EAY_LIBRARY_DEBUG}> $<$>:${SSL_EAY_LIBRARY_RELEASE}> - # DESTINATION ${TARGET_INSTALL_DIR} - # COMPONENT ${TARGET_INSTALL_COMPONENT} - # ) + install( + FILES $<$:${SSL_EAY_LIBRARY_DEBUG}> $<$>:${SSL_EAY_LIBRARY_RELEASE}> + DESTINATION ${TARGET_INSTALL_DIR} + COMPONENT ${TARGET_INSTALL_COMPONENT} + ) endif() endmacro()