From: Ben Boeckel Date: Wed, 18 Feb 2015 22:19:04 +0000 (-0500) Subject: cmake: install the dll file to the correct directory X-Git-Tag: curl-7_41_0~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20112ed8467c492a923b0ed2fb2d878c1a14ba44;p=curl cmake: install the dll file to the correct directory --- diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index e7886ac55..49a340938 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -98,4 +98,7 @@ if(WIN32) endif() endif() -install(TARGETS ${LIB_NAME} DESTINATION lib) +install(TARGETS ${LIB_NAME} + ARCHIVE DESTINATION lib + LIBRARY DESTINATION lib + RUNTIME DESTINATION bin)