From: Jaska Uimonen Date: Thu, 7 Jun 2012 07:55:56 +0000 (+0300) Subject: build-sys: make sure libdbus pulls in -lrt for the linker. X-Git-Tag: build/2012-06-15.125948~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=234ff3c9e8ed591b683af13d4405267d39e01b43;p=profile%2Fivi%2Faudiomanager.git build-sys: make sure libdbus pulls in -lrt for the linker. --- diff --git a/cmake/FindDBUS.cmake b/cmake/FindDBUS.cmake index 2d2cd9e..99bfe4a 100644 --- a/cmake/FindDBUS.cmake +++ b/cmake/FindDBUS.cmake @@ -34,6 +34,7 @@ PATHS /${LIBDIR} SET( DBUS_FOUND "NO" ) IF(DBUS_LIBRARY) SET( DBUS_FOUND "YES" ) + SET ( DBUS_LIBRARY ${DBUS_LIBRARY} -lrt) message(STATUS "Found DBUS libs: ${DBUS_LIBRARY}") message(STATUS "Found DBUS include: ${DBUS_INCLUDE_DIR}") message(STATUS "Found DBUS arch dependent include: ${DBUS_ARCH_INCLUDE_DIR}")