2014-09-23 19:05:22 +01:00
|
|
|
include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR}/core)
|
2014-06-18 01:49:07 +01:00
|
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kdeconnect-plugins\")
|
2013-08-13 04:14:46 +01:00
|
|
|
install(FILES kdeconnect_plugin.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR})
|
2013-08-13 04:07:32 +01:00
|
|
|
|
2013-08-12 15:09:52 +01:00
|
|
|
add_subdirectory(ping)
|
2013-08-13 14:48:02 +01:00
|
|
|
add_subdirectory(clipboard)
|
2013-08-13 23:09:05 +01:00
|
|
|
add_subdirectory(telephony)
|
2015-09-10 15:55:38 +01:00
|
|
|
add_subdirectory(share)
|
|
|
|
add_subdirectory(notifications)
|
2013-08-13 23:09:05 +01:00
|
|
|
add_subdirectory(battery)
|
2016-06-13 13:18:51 +01:00
|
|
|
add_subdirectory(findmyphone)
|
2017-01-23 08:08:27 +00:00
|
|
|
add_subdirectory(remotekeyboard)
|
2018-04-02 19:20:24 +01:00
|
|
|
add_subdirectory(mousepad)
|
|
|
|
if(NOT WIN32)
|
2017-06-29 00:57:46 +01:00
|
|
|
add_subdirectory(runcommand)
|
2016-06-13 13:18:51 +01:00
|
|
|
add_subdirectory(sendnotifications)
|
2015-09-10 15:55:38 +01:00
|
|
|
add_subdirectory(pausemusic)
|
|
|
|
add_subdirectory(mpriscontrol)
|
|
|
|
add_subdirectory(screensaver-inhibit)
|
|
|
|
add_subdirectory(sftp)
|
2015-09-10 14:51:38 +01:00
|
|
|
endif()
|
2015-06-18 03:01:01 +01:00
|
|
|
if(EXPERIMENTALAPP_ENABLED)
|
2017-08-02 01:05:01 +01:00
|
|
|
add_subdirectory(remotecommands)
|
2015-06-18 03:01:01 +01:00
|
|
|
add_subdirectory(mprisremote)
|
2015-07-22 02:19:29 +01:00
|
|
|
add_subdirectory(remotecontrol)
|
2015-07-22 02:37:34 +01:00
|
|
|
add_subdirectory(lockdevice)
|
2015-06-18 03:01:01 +01:00
|
|
|
endif()
|
|
|
|
|
2014-11-10 04:35:47 +00:00
|
|
|
#FIXME: If we split notifications in several files, they won't appear in the same group in the Notifications KCM
|
2014-11-12 05:40:54 +00:00
|
|
|
install(FILES kdeconnect.notifyrc DESTINATION ${KNOTIFYRC_INSTALL_DIR})
|