2013-11-23 00:39:10 +00:00
|
|
|
set(kdeconnect_share_SRCS
|
|
|
|
shareplugin.cpp
|
|
|
|
autoclosingqfile.cpp
|
|
|
|
)
|
|
|
|
|
2014-06-16 19:02:07 +01:00
|
|
|
add_library(kdeconnect_share MODULE ${kdeconnect_share_SRCS})
|
2013-11-23 00:39:10 +00:00
|
|
|
|
2014-09-22 01:37:10 +01:00
|
|
|
target_link_libraries(kdeconnect_share
|
|
|
|
kdeconnectcore
|
|
|
|
Qt5::DBus
|
|
|
|
KF5::Service
|
|
|
|
KF5::Notifications
|
|
|
|
KF5::I18n
|
|
|
|
KF5::KIOWidgets
|
|
|
|
)
|
2013-11-23 00:39:10 +00:00
|
|
|
|
|
|
|
install(TARGETS kdeconnect_share DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
install(FILES kdeconnect_share.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|
|
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
# Config
|
|
|
|
|
|
|
|
set( kdeconnect_share_config_SRCS share_config.cpp )
|
2014-09-08 02:09:18 +01:00
|
|
|
ki18n_wrap_ui( kdeconnect_share_config_SRCS share_config.ui )
|
2013-11-23 00:39:10 +00:00
|
|
|
|
2014-06-16 19:02:07 +01:00
|
|
|
add_library(kdeconnect_share_config MODULE ${kdeconnect_share_config_SRCS} )
|
2013-11-23 00:39:10 +00:00
|
|
|
target_link_libraries( kdeconnect_share_config
|
2014-09-22 08:24:59 +01:00
|
|
|
KF5::I18n
|
|
|
|
KF5::KCMUtils
|
|
|
|
KF5::CoreAddons
|
|
|
|
KF5::ConfigWidgets
|
2014-06-16 19:02:07 +01:00
|
|
|
KF5::KIOWidgets
|
2013-11-23 00:39:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
install(TARGETS kdeconnect_share_config DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
install(FILES kdeconnect_share_config.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|