diff options
author | John Maguire | 2010-09-19 15:55:31 +0200 |
---|---|---|
committer | Hector Martin | 2010-09-19 15:55:31 +0200 |
commit | bbaa8380a2af9130075f907033283761bfe56b5c (patch) | |
tree | 4474448b9b074e4e82e42c09fae5de6c887f1abe /libusbmuxd | |
parent | f8a406e4f4b2627baf37cb2c20e327bc5e62ca87 (diff) | |
download | usbmuxd-bbaa8380a2af9130075f907033283761bfe56b5c.tar.gz usbmuxd-bbaa8380a2af9130075f907033283761bfe56b5c.tar.bz2 |
Fixes for building libusbmuxd on OS X
Adds include_directories(${OPT_INCLUDES}) for when libplist isn't in
the default include directories.
Uses /bin/echo instead of sh's echo as "echo -n" does not work on
OS X's sh.
Diffstat (limited to 'libusbmuxd')
-rw-r--r-- | libusbmuxd/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libusbmuxd/CMakeLists.txt b/libusbmuxd/CMakeLists.txt index c8f2cb4..81203d3 100644 --- a/libusbmuxd/CMakeLists.txt +++ b/libusbmuxd/CMakeLists.txt @@ -11,6 +11,7 @@ endif() if(WIN32) set(OPT_LIBS ${OPT_LIBS} ws2_32) endif() +include_directories(${OPT_INCLUDES}) target_link_libraries (libusbmuxd ${CMAKE_THREAD_LIBS_INIT} ${OPT_LIBS}) # 'lib' is a UNIXism, the proper CMake target is usbmuxd |