2019-06-30 21:40:23 +01:00
|
|
|
if(APPLE)
|
2019-08-31 11:40:43 +01:00
|
|
|
set(kdeconnect_screensaver_inhibit_SRCS
|
|
|
|
screensaverinhibitplugin-macos.cpp
|
|
|
|
)
|
|
|
|
elseif(WIN32)
|
|
|
|
set(kdeconnect_screensaver_inhibit_SRCS
|
|
|
|
screensaverinhibitplugin-win.cpp
|
|
|
|
)
|
2019-06-30 21:40:23 +01:00
|
|
|
else()
|
2019-08-31 11:40:43 +01:00
|
|
|
set(kdeconnect_screensaver_inhibit_SRCS
|
|
|
|
screensaverinhibitplugin.cpp
|
|
|
|
)
|
2020-07-30 00:00:01 +01:00
|
|
|
qt5_add_dbus_interface(kdeconnect_screensaver_inhibit_SRCS org.freedesktop.ScreenSaver.xml screensaverinterface)
|
2019-06-30 21:40:23 +01:00
|
|
|
endif()
|
2014-12-29 08:03:41 +00:00
|
|
|
|
2020-05-26 17:55:47 +01:00
|
|
|
set(debug_file_SRCS)
|
|
|
|
ecm_qt_declare_logging_category(
|
|
|
|
debug_file_SRCS HEADER kdeconnect_screensaverinhibit_debug.h
|
|
|
|
IDENTIFIER KDECONNECT_PLUGIN_SCREENSAVERINHIBIT CATEGORY_NAME kdeconnect.plugin.screensaverinhibit
|
|
|
|
DEFAULT_SEVERITY Warning
|
|
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin screensaverinhibit)")
|
|
|
|
|
|
|
|
kdeconnect_add_plugin(kdeconnect_screensaver_inhibit JSON kdeconnect_screensaver_inhibit.json SOURCES ${kdeconnect_screensaver_inhibit_SRCS} ${debug_file_SRCS})
|
2014-12-29 08:03:41 +00:00
|
|
|
|
2019-06-30 21:40:23 +01:00
|
|
|
target_link_libraries(kdeconnect_screensaver_inhibit kdeconnectcore)
|
2019-08-31 11:40:43 +01:00
|
|
|
if(NOT APPLE AND NOT WIN32)
|
|
|
|
target_link_libraries(kdeconnect_screensaver_inhibit
|
|
|
|
Qt5::DBus
|
|
|
|
KF5::I18n
|
|
|
|
)
|
2019-06-30 21:40:23 +01:00
|
|
|
endif()
|
|
|
|
|