Merge pull request #8162 from redbaron/find-threads

CMAKE: look for pthreads when importing wolfSSL if required
pull/8259/head
Daniel Pouzzner 2024-12-11 14:36:04 -06:00 committed by GitHub
commit ee4366acc5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,9 @@
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
if (@HAVE_PTHREAD@)
find_dependency(Threads)
endif()
include ( "${CMAKE_CURRENT_LIST_DIR}/wolfssl-targets.cmake" )