summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2016-08-17 18:42:02 +0200
committerRalf Habacker <ralf.habacker@freenet.de>2016-08-18 14:59:22 +0200
commit5bb70dd55470affb971a840f1a98275906419557 (patch)
tree25aeb3ca4f69b1d6f586fe979db9216b03d121fe /cmake
parent1a36f9832ab2b6213814021c52384ccd394b627e (diff)
Fix building with CMake for a Unix platform that does not have -lrt, such as Android.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=94096 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/dbus/CMakeLists.txt14
1 files changed, 11 insertions, 3 deletions
diff --git a/cmake/dbus/CMakeLists.txt b/cmake/dbus/CMakeLists.txt
index c5c5ebd68..452a9e314 100644
--- a/cmake/dbus/CMakeLists.txt
+++ b/cmake/dbus/CMakeLists.txt
@@ -254,8 +254,10 @@ if(MSVC_IDE)
project_source_group(${GROUP_CODE} DBUS_UTIL_SOURCES DBUS_UTIL_SOURCES)
endif(MSVC_IDE)
-### Client library
+# for clock_getres() on e.g. GNU/Linux (but not Android)
+find_library(LIBRT rt)
+### Client library
add_library(dbus-1 SHARED
${libdbus_SOURCES}
${libdbus_HEADERS}
@@ -282,7 +284,10 @@ else(WIN32)
if(DEFINED DBUS_LIBRARY_REVISION)
set_target_properties(dbus-1 PROPERTIES VERSION ${DBUS_LIBRARY_MAJOR}.${DBUS_LIBRARY_AGE}.${DBUS_LIBRARY_REVISION} SOVERSION ${DBUS_LIBRARY_MAJOR})
endif()
- target_link_libraries(dbus-1 ${CMAKE_THREAD_LIBS_INIT} rt)
+ target_link_libraries(dbus-1 ${CMAKE_THREAD_LIBS_INIT})
+ if(LIBRT)
+ target_link_libraries(dbus-1 ${LIBRT})
+ endif()
endif(WIN32)
# Assume that Linux has -Wl,--version-script and other platforms do not
@@ -309,7 +314,10 @@ if(WIN32)
target_link_libraries(dbus-internal ws2_32 advapi32 netapi32 iphlpapi)
endif(WINCE)
else(WIN32)
- target_link_libraries(dbus-internal ${CMAKE_THREAD_LIBS_INIT} rt)
+ target_link_libraries(dbus-internal ${CMAKE_THREAD_LIBS_INIT})
+ if(LIBRT)
+ target_link_libraries(dbus-internal ${LIBRT})
+ endif()
endif(WIN32)
if (DBUS_ENABLE_EMBEDDED_TESTS)