diff options
author | Hector Martin | 2009-08-20 03:42:52 +0200 |
---|---|---|
committer | Hector Martin | 2009-08-20 06:51:10 +0200 |
commit | 1a0c58e4062da7db73b4c08963f741cf016f6aa5 (patch) | |
tree | b250f094e978d48622ecf652e28e9f3b68873893 /tools/CMakeLists.txt | |
parent | f4854f3fd725b5ba49cd5157d941783cffa08c04 (diff) | |
parent | 79ca4d9a3c3a82bb5a3f9be1ac7a2533c7a89b05 (diff) | |
download | usbmuxd-1a0c58e4062da7db73b4c08963f741cf016f6aa5.tar.gz usbmuxd-1a0c58e4062da7db73b4c08963f741cf016f6aa5.tar.bz2 |
Merge the two development histories
Diffstat (limited to 'tools/CMakeLists.txt')
-rw-r--r-- | tools/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt new file mode 100644 index 0000000..70ec3b3 --- /dev/null +++ b/tools/CMakeLists.txt @@ -0,0 +1,8 @@ +include_directories (${CMAKE_SOURCE_DIR}/libusbmuxd) +link_directories (${CMAKE_BINARY_DIR}/libusbmuxd) + +add_definitions(-Wall -O2 -g) +add_executable(iproxy iproxy.c) +target_link_libraries(iproxy libusbmuxd pthread) + +install(TARGETS iproxy RUNTIME DESTINATION bin)
\ No newline at end of file |