summaryrefslogtreecommitdiffstats
path: root/libusbmuxd/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'libusbmuxd/CMakeLists.txt')
-rw-r--r--libusbmuxd/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/libusbmuxd/CMakeLists.txt b/libusbmuxd/CMakeLists.txt
index fd47afb..d062f23 100644
--- a/libusbmuxd/CMakeLists.txt
+++ b/libusbmuxd/CMakeLists.txt
@@ -1,7 +1,8 @@
1include_directories (${CMAKE_SOURCE_DIR}/common) 1include_directories (${CMAKE_SOURCE_DIR}/common)
2 2
3add_library (libusbmuxd SHARED libusbmuxd.c sock_stuff.c ../common/utils.c) 3add_library (libusbmuxd SHARED libusbmuxd.c sock_stuff.c ../common/utils.c)
4 4find_library (PTHREAD pthread)
5target_link_libraries (libusbmuxd ${PTHREAD})
5# 'lib' is a UNIXism, the proper CMake target is usbmuxd 6# 'lib' is a UNIXism, the proper CMake target is usbmuxd
6# But we can't use that due to the conflict with the usbmuxd daemon, 7# But we can't use that due to the conflict with the usbmuxd daemon,
7# so instead change the library output base name to usbmuxd here 8# so instead change the library output base name to usbmuxd here