Added linkage of s11n required libs in standalone

This commit is contained in:
Ruslan Garnov 2020-09-24 17:40:43 +03:00
parent 7c22cd49a7
commit 50657e2324

View File

@ -45,3 +45,8 @@ if(MSVC)
endif() endif()
target_link_libraries(${FLUID_TARGET} PRIVATE ade) target_link_libraries(${FLUID_TARGET} PRIVATE ade)
if(WIN32)
# Required for htonl/ntohl on Windows
target_link_libraries(${FLUID_TARGET} PRIVATE wsock32 ws2_32)
endif()