mirror of
https://github.com/curl/curl.git
synced 2026-07-30 01:48:04 +03:00
cmake: fix build for mingw cross compile
- Change normaliz lib name to all lowercase. This is from a standing patch in vcpkg: Mingw has libnormaliz.a. For case-sensitive file systems (e.g. cross builds from Linux), the spelling must match exactly. Closes https://github.com/curl/curl/pull/9084
This commit is contained in:
parent
bbffb8c285
commit
e584b1c044
1 changed files with 1 additions and 1 deletions
|
|
@ -688,7 +688,7 @@ endif()
|
|||
if(WIN32)
|
||||
option(USE_WIN32_IDN "Use WinIDN for IDN support" OFF)
|
||||
if(USE_WIN32_IDN)
|
||||
list(APPEND CURL_LIBS "Normaliz")
|
||||
list(APPEND CURL_LIBS "normaliz")
|
||||
set(WANT_IDN_PROTOTYPES ON)
|
||||
endif()
|
||||
endif()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue