summaryrefslogtreecommitdiff
path: root/wsutil
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-30 07:09:29 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-30 07:09:29 +0000
commit13df2a878bed028c9745e7be7e4e20796ee44e84 (patch)
treed26e8c8cb57f70e37d5890f498db2f9d2e6e6c64 /wsutil
parent943e829e47fef1007afe46b0b1080df00d257cde (diff)
downloadwireshark-13df2a878bed028c9745e7be7e4e20796ee44e84.tar.gz
On Windows a shared library in divided into a DLL part (RUNTIME) and an import lib (ARCHIVE).
svn path=/trunk/; revision=29622
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/CMakeLists.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/wsutil/CMakeLists.txt b/wsutil/CMakeLists.txt
index 06cf73678f..68f63c0e6f 100644
--- a/wsutil/CMakeLists.txt
+++ b/wsutil/CMakeLists.txt
@@ -36,8 +36,11 @@ set(WSUTIL_FILES
${WSUTIL_PLATFORM_FILES}
)
-add_library(wsutil SHARED
+add_library(wsutil SHARED
${WSUTIL_FILES}
)
-install(TARGETS wsutil LIBRARY DESTINATION lib)
+install(TARGETS wsutil
+ LIBRARY DESTINATION lib
+ RUNTIME DESTINATION lib
+ ARCHIVE DESTINATION lib)