Fix cross-compiling with CMake due to wrong ws2_32 case
Use "ws2_32" in lower-case to ensure the library is found when cross-compiling and using a case-sensitive filesystem. Closes https://github.com/wxWidgets/wxWidgets/pull/772
This commit is contained in:
parent
4cdd3001c2
commit
6238f577db
@ -24,7 +24,7 @@ endif()
|
||||
wx_add_library(net IS_BASE ${NET_FILES})
|
||||
|
||||
if(WIN32)
|
||||
wx_lib_link_libraries(net PRIVATE Ws2_32)
|
||||
wx_lib_link_libraries(net PRIVATE ws2_32)
|
||||
endif()
|
||||
|
||||
wx_finalize_lib(net)
|
||||
|
Loading…
Reference in New Issue
Block a user