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
|
|
|
|
)
|
2022-10-29 15:51:41 +01:00
|
|
|
qt_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
|
|
|
|
2023-07-20 14:31:40 +01:00
|
|
|
|
|
|
|
kdeconnect_add_plugin(kdeconnect_screensaver_inhibit SOURCES ${kdeconnect_screensaver_inhibit_SRCS})
|
|
|
|
|
|
|
|
ecm_qt_declare_logging_category(kdeconnect_screensaver_inhibit
|
|
|
|
HEADER kdeconnect_screensaverinhibit_debug.h
|
2020-05-26 17:55:47 +01:00
|
|
|
IDENTIFIER KDECONNECT_PLUGIN_SCREENSAVERINHIBIT CATEGORY_NAME kdeconnect.plugin.screensaverinhibit
|
|
|
|
DEFAULT_SEVERITY Warning
|
|
|
|
EXPORT kdeconnect-kde DESCRIPTION "kdeconnect (plugin screensaverinhibit)")
|
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
|
2022-10-29 15:51:41 +01:00
|
|
|
Qt::DBus
|
2023-04-15 11:57:52 +01:00
|
|
|
KF${QT_MAJOR_VERSION}::I18n
|
2019-08-31 11:40:43 +01:00
|
|
|
)
|
2019-06-30 21:40:23 +01:00
|
|
|
endif()
|
|
|
|
|