From c3ad3d06f4cd0075a39980e863ad37692eaba7d8 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 18 Feb 2015 17:19:04 -0500 Subject: [PATCH] libcurl: install the dll file to the correct directory --- lib/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index e7886ac55dc40a..49a340938ada70 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)