┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorAshish Bansal <[email protected]>2015-04-22 18:59:39 +0530
committerAshish Bansal <[email protected]>2015-04-22 18:59:39 +0530
commit7042c6c2899a4e46a095a38ee1481b63ca4b96d8 (patch)
tree9f4faa535285ec57cafa9ba6cf5173c089509f9d /CMakeLists.txt
parent807230882b0d68d6b24849aa79d69fb4df7e813a (diff)
Add dbus interface to dolphin
Implemented org.freedesktop.FileManager1 dbus interface in dolphin http://www.freedesktop.org/wiki/Specifications/file-manager-interface/ REVIEW: 123313 BUG: 343016
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index daf927197..3575db5da 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -10,7 +10,7 @@ set(ECM_MIN_VERSION "1.6.0")
# ECM setup
find_package(ECM ${ECM_MIN_VERSION} CONFIG REQUIRED)
-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake)
include(ECMSetupVersion)
include(ECMGenerateHeaders)
@@ -123,5 +123,10 @@ install(FILES
COMPONENT Devel
)
+configure_file(org.kde.dolphin.FileManager1.service.in
+ ${CMAKE_CURRENT_BINARY_DIR}/org.kde.dolphin.FileManager1.service)
+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.dolphin.FileManager1.service
+ DESTINATION ${DBUS_SERVICES_INSTALL_DIR})
+
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)