f1b0d016ab
Summary: It is functional on the desktop as well and provides a place for controls for desktop to desktop features (e.g. MprisRemote, LockPlugin) and controls for non-Plasma desktops (e.g. Remotekeyboard, not yet implemented) Test Plan: Builds Reviewers: #kde_connect, apol, sredman Reviewed By: apol Subscribers: piggz, apol, sredman, kdeconnect Tags: #kde_connect Differential Revision: https://phabricator.kde.org/D15399
48 lines
1.5 KiB
CMake
48 lines
1.5 KiB
CMake
include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR}/core)
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kdeconnect-plugins\")
|
|
install(FILES kdeconnect_plugin.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR})
|
|
|
|
add_subdirectory(ping)
|
|
add_subdirectory(battery)
|
|
add_subdirectory(sendnotifications)
|
|
add_subdirectory(mpriscontrol)
|
|
add_subdirectory(photo)
|
|
add_subdirectory(systemvolume)
|
|
add_subdirectory(remotecommands)
|
|
add_subdirectory(mprisremote)
|
|
add_subdirectory(remotecontrol)
|
|
add_subdirectory(lockdevice)
|
|
add_subdirectory(remotesystemvolume)
|
|
|
|
if(NOT SAILFISHOS)
|
|
add_subdirectory(clipboard)
|
|
add_subdirectory(contacts)
|
|
add_subdirectory(share)
|
|
add_subdirectory(remotekeyboard)
|
|
add_subdirectory(notifications)
|
|
add_subdirectory(findmyphone)
|
|
add_subdirectory(telephony)
|
|
add_subdirectory(mousepad)
|
|
add_subdirectory(sms)
|
|
add_subdirectory(runcommand)
|
|
if(NOT WIN32)
|
|
add_subdirectory(screensaver-inhibit)
|
|
endif()
|
|
if(NOT WIN32 AND NOT APPLE)
|
|
add_subdirectory(sftp)
|
|
add_subdirectory(pausemusic)
|
|
endif()
|
|
|
|
if(Qt5Multimedia_FOUND AND KF5PulseAudioQt_FOUND)
|
|
add_subdirectory(findthisdevice)
|
|
endif()
|
|
endif()
|
|
|
|
option(EXPERIMENTAL_PRESENTER "Enables building the experimental on-screen pointer for presentations" OFF)
|
|
if(EXPERIMENTAL_PRESENTER)
|
|
add_subdirectory(presenter)
|
|
endif()
|
|
|
|
# If we split notifications per plugin, in several notifyrc files, they won't
|
|
# appear in the same group in the Notifications KCM
|
|
install(FILES kdeconnect.notifyrc DESTINATION ${KNOTIFYRC_INSTALL_DIR})
|