Fix wxNet build problem when cross-compiling using CMake

Fix the case of "winhttp" library, this is important when using
case-sensitive file systems.

Closes https://github.com/wxWidgets/wxWidgets/pull/2409
This commit is contained in:
CPUBug
2021-06-28 17:04:41 +03:00
committed by Vadim Zeitlin
parent b35d595e5d
commit 67d9eb2541

View File

@@ -27,7 +27,7 @@ if(WIN32)
wx_lib_link_libraries(wxnet PRIVATE ws2_32)
if(wxUSE_WEBREQUEST_WINHTTP)
wx_lib_link_libraries(wxnet PRIVATE Winhttp)
wx_lib_link_libraries(wxnet PRIVATE winhttp)
endif()
endif()