Skip to content

Commit

Permalink
cmake: fix target_link_libraries for win32 (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh authored Feb 23, 2022
1 parent 8bbf551 commit 233130c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -429,19 +429,18 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
PRIVATE "-framework SystemConfiguration" "-framework CoreFoundation"
)
endif()
target_link_libraries(re-shared
PRIVATE -L/opt/local/lib ${OPENSSL_LIBRARIES} -lpthread)


if(WIN32)
target_link_libraries(re-shared
libssl
libcrypto
target_link_libraries(re-shared PRIVATE
${OPENSSL_LIBRARIES}
qwave
iphlpapi
wsock32
ws2_32
)
else()
target_link_libraries(re-shared
PRIVATE -L/opt/local/lib ${OPENSSL_LIBRARIES} -lpthread)
endif()

set_target_properties(re-shared PROPERTIES PUBLIC_HEADER include/re.h)
Expand Down

0 comments on commit 233130c

Please sign in to comment.