Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(openssl): add missing dependency to OpenSSL components #3157

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions Crypto/cmake/PocoCryptoConfig.cmake
@@ -1,3 +1,4 @@
include(CMakeFindDependencyMacro)
find_dependency(PocoFoundation)
find_dependency(OpenSSL REQUIRED COMPONENTS Crypto)
include("${CMAKE_CURRENT_LIST_DIR}/PocoCryptoTargets.cmake")
1 change: 1 addition & 0 deletions NetSSL_OpenSSL/cmake/PocoNetSSLConfig.cmake
Expand Up @@ -3,4 +3,5 @@ find_dependency(PocoFoundation)
find_dependency(PocoUtil)
find_dependency(PocoNet)
find_dependency(PocoCrypto)
find_dependency(OpenSSL REQUIRED COMPONENTS SSL)
include("${CMAKE_CURRENT_LIST_DIR}/PocoNetSSLTargets.cmake")
1 change: 1 addition & 0 deletions NetSSL_Win/cmake/PocoNetSSLWinConfig.cmake
Expand Up @@ -2,4 +2,5 @@ include(CMakeFindDependencyMacro)
find_dependency(PocoFoundation)
find_dependency(PocoUtil)
find_dependency(PocoNet)
find_dependency(OpenSSL REQUIRED COMPONENTS SSL)
andy9a9 marked this conversation as resolved.
Show resolved Hide resolved
include("${CMAKE_CURRENT_LIST_DIR}/PocoNetSSLWinTargets.cmake")