Skip to content

Commit

Permalink
Merge pull request #8162 from redbaron/find-threads
Browse files Browse the repository at this point in the history
CMAKE: look for pthreads when importing wolfSSL if required
  • Loading branch information
douzzer authored Dec 11, 2024
2 parents 2ea2e6b + 0319eb0 commit ee4366a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cmake/Config.cmake.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
@PACKAGE_INIT@

include(CMakeFindDependencyMacro)
if (@HAVE_PTHREAD@)
find_dependency(Threads)
endif()


include ( "${CMAKE_CURRENT_LIST_DIR}/wolfssl-targets.cmake" )

0 comments on commit ee4366a

Please sign in to comment.