From af204c4933b002e270a5eb47d141bed2f48042ae Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Tue, 19 Feb 2013 01:02:44 +0100 Subject: [PATCH] Fixed bug not installing runtime part of shared libraries into bin dir for cmake builds. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=59733 --- cmake/dbus/CMakeLists.txt | 2 +- 1 Datei geändert, 1 Zeile hinzugefügt(+), 1 Zeile entfernt(-) diff --git a/cmake/dbus/CMakeLists.txt b/cmake/dbus/CMakeLists.txt index d09e63d..7477b58 100644 --- a/cmake/dbus/CMakeLists.txt +++ b/cmake/dbus/CMakeLists.txt @@ -270,7 +270,7 @@ else(WIN32) target_link_libraries(dbus-1 ${CMAKE_THREAD_LIBS_INIT}) endif(WIN32) -install_targets(/lib dbus-1 ) +install(TARGETS dbus-1 RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib) install_files(/include/dbus FILES ${dbusinclude_HEADERS}) ### Internal library, used for the daemon, tools and tests, compiled statically. -- 1.7.10.4