From 61491b7dea46ae070440bc0ab5e8ca2e5431f77d Mon Sep 17 00:00:00 2001 From: Andreas Waidler Date: Sun, 14 Aug 2011 18:50:13 +0200 Subject: [PATCH] Fixed target "install" for windows users. --- libsex/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libsex/CMakeLists.txt b/libsex/CMakeLists.txt index 9c61221..e1a75dc 100644 --- a/libsex/CMakeLists.txt +++ b/libsex/CMakeLists.txt @@ -6,7 +6,9 @@ ADD_LIBRARY(${PROJECT_NAME} SHARED ${files}) # Above library is installed. INSTALL( TARGETS ${PROJECT_NAME} - LIBRARY DESTINATION "lib") + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + RUNTIME DESTINATION bin) # So are the header files. INSTALL( -- 2.11.4.GIT