mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 12:28:40 +00:00
Only search for Pthread on Windows platforms
This commit is contained in:
parent
956c9e063d
commit
3e72f6effd
1 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
set(THREADS_USE_PTHREADS_WIN32 true)
|
||||
find_package(Threads)
|
||||
|
||||
set(libs
|
||||
|
@ -40,7 +41,7 @@ target_link_libraries(ssl_mail_client ${libs})
|
|||
|
||||
if(THREADS_FOUND)
|
||||
add_executable(ssl_pthread_server ssl_pthread_server.c)
|
||||
target_link_libraries(ssl_pthread_server ${libs} pthread)
|
||||
target_link_libraries(ssl_pthread_server ${libs} ${CMAKE_THREAD_LIBS_INIT})
|
||||
set(targets ${targets} ssl_pthread_server)
|
||||
endif(THREADS_FOUND)
|
||||
|
||||
|
|
Loading…
Reference in a new issue