projects
/
curl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63b4b8c
)
cmake: install the dll file to the correct directory
author
Ben Boeckel
<ben.boeckel@kitware.com>
Wed, 18 Feb 2015 22:19:04 +0000
(17:19 -0500)
committer
Daniel Stenberg
<daniel@haxx.se>
Fri, 20 Feb 2015 13:17:32 +0000
(14:17 +0100)
lib/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/lib/CMakeLists.txt
b/lib/CMakeLists.txt
index e7886ac55dc40a682a46f0ce017d5c5aec07c4eb..49a340938ada709955e3b57d833f9c39dccecd7b 100644
(file)
--- 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)