1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-24 02:19:52 +03:00

Merge PR #577: CMake: fix pthread detection

This commit is contained in:
Davide Beatrici 2018-07-25 13:08:11 +02:00 committed by GitHub
commit 949c5670d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ if(UNIX)
add_definitions(-DUNIX) add_definitions(-DUNIX)
find_library(LIB_PTHREAD pthread) find_package(Threads)
find_library(LIB_READLINE readline) find_library(LIB_READLINE readline)
find_library(LIB_NCURSES ncurses) find_library(LIB_NCURSES ncurses)
find_library(LIB_Z z) find_library(LIB_Z z)
@ -176,7 +176,7 @@ if(UNIX)
endif() endif()
endif() endif()
target_link_libraries(mayaqua ${LIB_PTHREAD} ${LIB_SSL} ${LIB_CRYPTO} ${LIB_READLINE} ${LIB_NCURSES} ${LIB_Z}) target_link_libraries(mayaqua ${CMAKE_THREAD_LIBS_INIT} ${LIB_SSL} ${LIB_CRYPTO} ${LIB_READLINE} ${LIB_NCURSES} ${LIB_Z})
if(LIB_ICONV) if(LIB_ICONV)
target_link_libraries(mayaqua ${LIB_ICONV}) target_link_libraries(mayaqua ${LIB_ICONV})