diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-04-21 15:03:04 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-04-21 15:03:26 +0200 |
commit | 3057c6cd736dc40483311ee73f7b697cf519158b (patch) | |
tree | 9ea258fb76a41e28694fa2e9352a2a46f7b46ac1 /src | |
parent | dd2bb485521c2ec713001b3a7356555dd893e2e6 (diff) | |
download | curl-3057c6cd736dc40483311ee73f7b697cf519158b.tar.gz |
Revert "cmake: make libcurl library output name configurable"
This reverts commit 1cba36d2166c396f987eea587cf92671b27acb92.
CMake provides properties that can be set on a target to rename the
output artifact without changing the name of a target.
Ref: #6899
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3804c26b1..0982cfe6e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -97,7 +97,7 @@ include_directories( ) #Build curl executable -target_link_libraries(${EXE_NAME} ${LIB_NAME} ${CURL_LIBS}) +target_link_libraries(${EXE_NAME} libcurl ${CURL_LIBS}) ################################################################################ |