3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 06:44:18 +00:00
Brooklyn/plasma/workspace/ktimezoned/CMakeLists.txt
2022-03-05 22:41:29 +05:00

18 lines
469 B
CMake

if (WIN32)
set(kded_ktimezoned_SRCS ktimezoned_win.cpp)
else ()
set(kded_ktimezoned_SRCS ktimezoned.cpp)
endif ()
kcoreaddons_add_plugin(ktimezoned SOURCES ${kded_ktimezoned_SRCS} INSTALL_NAMESPACE "kf5/kded")
#qt_add_dbus_adaptor(kded_ktimezoned_SRCS org.kde.KTimeZoned ktimezonedbus.h DBusHandler)
target_link_libraries(ktimezoned
Qt::Core
Qt::DBus
KF5::Service # plugin factory
KF5::CoreAddons # KDirWatch
KF5::DBusAddons # kdedmodule
)