From bbaa8380a2af9130075f907033283761bfe56b5c Mon Sep 17 00:00:00 2001 From: John Maguire Date: Sun, 19 Sep 2010 15:55:31 +0200 Subject: 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. --- daemon/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'daemon/CMakeLists.txt') diff --git a/daemon/CMakeLists.txt b/daemon/CMakeLists.txt index 103a8fe..c323f7b 100644 --- a/daemon/CMakeLists.txt +++ b/daemon/CMakeLists.txt @@ -1,5 +1,6 @@ find_package(USB REQUIRED) include_directories(${USB_INCLUDE_DIRS}) +include_directories(${OPT_INCLUDES}) set(LIBS ${LIBS} ${USB_LIBRARIES} ${OPT_LIBS}) if(HAVE_PLIST) add_definitions("-DHAVE_PLIST") -- cgit v1.1-32-gdbae