From 63ffaef5b9ba6225d2106f9d4ec07dd318163287 Mon Sep 17 00:00:00 2001 From: Cerrato Renaud Date: Thu, 10 Jun 2010 10:41:30 +0200 Subject: Fix cygwin builds - libusbmuxd/CMakeLists.txt : there was a neglect into install rules, for DLL, RUNTIME was missing. - libusbmuxd.c : added __CYGWIN__ conditionnal compilation checks to force regular socket instead of UNIX sockets on CYGWIN platform. --- libusbmuxd/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'libusbmuxd/CMakeLists.txt') diff --git a/libusbmuxd/CMakeLists.txt b/libusbmuxd/CMakeLists.txt index 6bded04..c8f2cb4 100644 --- a/libusbmuxd/CMakeLists.txt +++ b/libusbmuxd/CMakeLists.txt @@ -21,6 +21,7 @@ set_target_properties(libusbmuxd PROPERTIES VERSION ${LIBUSBMUXD_VERSION}) set_target_properties(libusbmuxd PROPERTIES SOVERSION ${LIBUSBMUXD_SOVERSION}) install(TARGETS libusbmuxd + RUNTIME DESTINATION bin ARCHIVE DESTINATION lib${LIB_SUFFIX} LIBRARY DESTINATION lib${LIB_SUFFIX} ) -- cgit v1.1-32-gdbae