kde-workspace/plasma/applets/notifications/CMakeLists.txt
Ivailo Monev f4d40c28e9 plasma: semi-working notifications applet reimplementation
the application notifications works and is nearly complete, the jobs
notification is yet to be done. so far it looks like this:
https://ibb.co/GTGMKtQ

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-09-17 07:50:27 +03:00

23 lines
480 B
CMake

project(plasma-applet-notifications)
set(notifications_SRCS
notifications.cpp
jobswidget.cpp
applicationswidget.cpp
)
kde4_add_plugin(plasma_applet_notifications ${notifications_SRCS})
target_link_libraries(plasma_applet_notifications
KDE4::plasma
KDE4::kio
)
install(
TARGETS plasma_applet_notifications
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
)
install(
FILES plasma-applet-notifications.desktop
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)