diff options
author | Nikias Bassen | 2009-08-25 03:25:44 +0200 |
---|---|---|
committer | Nikias Bassen | 2009-08-25 03:25:44 +0200 |
commit | de30ca5d5c98a8cbee3d8748601519e2263b3e1d (patch) | |
tree | de7300fb4280eca244847c55fa63debaec366ef2 | |
parent | 10f1ae70bff65fd3e65718b54a1425035e86002c (diff) | |
download | usbmuxd-de30ca5d5c98a8cbee3d8748601519e2263b3e1d.tar.gz usbmuxd-de30ca5d5c98a8cbee3d8748601519e2263b3e1d.tar.bz2 |
libusbmuxd: build .so instead of .a
-rw-r--r-- | libusbmuxd/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libusbmuxd/CMakeLists.txt b/libusbmuxd/CMakeLists.txt index 7f7b35f..accdbc4 100644 --- a/libusbmuxd/CMakeLists.txt +++ b/libusbmuxd/CMakeLists.txt @@ -1,6 +1,6 @@ include_directories (${CMAKE_SOURCE_DIR}/common) -add_library (libusbmuxd libusbmuxd.c sock_stuff.c ../common/utils.c) +add_library (libusbmuxd SHARED libusbmuxd.c sock_stuff.c ../common/utils.c) # 'lib' is a UNIXism, the proper CMake target is usbmuxd # But we can't use that due to the conflict with the usbmuxd daemon, |