cmake: make libcurl library output name configurable

Closes #6899
This commit is contained in:
Ralph Langendam 2021-04-15 16:54:23 +02:00 committed by Daniel Stenberg
parent 415d6fa7da
commit 1cba36d216
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
4 changed files with 4 additions and 4 deletions

View file

@ -97,7 +97,7 @@ include_directories(
)
#Build curl executable
target_link_libraries(${EXE_NAME} libcurl ${CURL_LIBS})
target_link_libraries(${EXE_NAME} ${LIB_NAME} ${CURL_LIBS})
################################################################################