diff options
author | Hector Martin | 2009-04-28 02:02:55 +0200 |
---|---|---|
committer | Hector Martin | 2009-04-28 02:02:55 +0200 |
commit | cc9e6a2318352a8fd3a35c25fcb294331ff54288 (patch) | |
tree | 75b891a06a7eddf9674327ae387784b0c64967b0 /CMakeLists.txt | |
parent | d982007a7350df35c5aeba820a520779694514a7 (diff) | |
download | usbmuxd-cc9e6a2318352a8fd3a35c25fcb294331ff54288.tar.gz usbmuxd-cc9e6a2318352a8fd3a35c25fcb294331ff54288.tar.bz2 |
USB mostly complete, main loop added, polls for devices
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 81a6965..acbc779 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) +add_executable(usbmuxd main.c usb-linux.c log.c utils.c device.c) target_link_libraries(usbmuxd ${LIBS}) |