1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-16 06:25:03 -05:00

cmake: Add advapi32 as explicit link library for win32

ARM targets need advapi32 explicitly.

Closes #2363
This commit is contained in:
Michał Janiszewski 2018-03-27 15:22:37 +02:00 committed by Sergei Nikulov
parent 2bd8e684a4
commit bea18c7f39

View File

@ -285,6 +285,7 @@ check_function_exists(gethostname HAVE_GETHOSTNAME)
if(WIN32) if(WIN32)
check_library_exists_concat("ws2_32" getch HAVE_LIBWS2_32) check_library_exists_concat("ws2_32" getch HAVE_LIBWS2_32)
check_library_exists_concat("winmm" getch HAVE_LIBWINMM) check_library_exists_concat("winmm" getch HAVE_LIBWINMM)
list(APPEND CURL_LIBS "advapi32")
endif() endif()
# check SSL libraries # check SSL libraries