diff options
author | Hector Martin | 2009-04-28 02:13:03 +0200 |
---|---|---|
committer | Hector Martin | 2009-04-28 02:13:03 +0200 |
commit | 2f6910a012f14e132565043b7f231373f6b8cc23 (patch) | |
tree | fd827013ac82d07e50ee9efc1f50592010e332d7 | |
parent | cc9e6a2318352a8fd3a35c25fcb294331ff54288 (diff) | |
download | usbmuxd-2f6910a012f14e132565043b7f231373f6b8cc23.tar.gz usbmuxd-2f6910a012f14e132565043b7f231373f6b8cc23.tar.bz2 |
rename mux -> client
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | client.c (renamed from mux.c) | 0 | ||||
-rw-r--r-- | client.h (renamed from mux.h) | 0 |
3 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index acbc779..cd4a427 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,6 +11,6 @@ set(LIBS ${LIBS} ${USB_LIBRARIES}) #set(CMAKE_VERBOSE_MAKEFILE ON) add_definitions(-Wall -O2) -add_executable(usbmuxd main.c usb-linux.c log.c utils.c device.c) +add_executable(usbmuxd main.c usb-linux.c log.c utils.c device.c client.c) target_link_libraries(usbmuxd ${LIBS}) |