CMake: Fix incorrect library for HTTPDownloaderCurl

This commit is contained in:
Stenzek
2023-11-18 14:58:42 +10:00
parent ad1716e376
commit bee1f986a9
4 changed files with 6 additions and 4 deletions

View File

@ -284,11 +284,11 @@ elseif(NOT ANDROID)
endif()
if(NOT WIN32 AND NOT ANDROID)
target_sources(common PRIVATE
target_sources(util PRIVATE
http_downloader_curl.cpp
http_downloader_curl.h
)
target_link_libraries(common PRIVATE
target_link_libraries(util PRIVATE
CURL::libcurl
)
endif()