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

This commit is contained in:
Günter Obiltschnig
2021-06-15 14:49:38 +02:00
parent f5de69b854
commit b4ee4b9f30
2 changed files with 2 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
include(CMakeFindDependencyMacro) include(CMakeFindDependencyMacro)
find_dependency(PocoFoundation) find_dependency(PocoFoundation)
find_dependency(OpenSSL REQUIRED COMPONENTS Crypto)
include("${CMAKE_CURRENT_LIST_DIR}/PocoCryptoTargets.cmake") include("${CMAKE_CURRENT_LIST_DIR}/PocoCryptoTargets.cmake")

View File

@@ -3,4 +3,5 @@ find_dependency(PocoFoundation)
find_dependency(PocoUtil) find_dependency(PocoUtil)
find_dependency(PocoNet) find_dependency(PocoNet)
find_dependency(PocoCrypto) find_dependency(PocoCrypto)
find_dependency(OpenSSL REQUIRED COMPONENTS SSL)
include("${CMAKE_CURRENT_LIST_DIR}/PocoNetSSLTargets.cmake") include("${CMAKE_CURRENT_LIST_DIR}/PocoNetSSLTargets.cmake")