mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 10:22:49 +00:00
22 lines
445 B
CMake
22 lines
445 B
CMake
########### next target ###############
|
|
|
|
set(knotificationconfig_SRCS
|
|
knotificationconfig.cpp
|
|
)
|
|
|
|
kde4_add_plugin(kcm_knotificationconfig ${knotificationconfig_SRCS})
|
|
|
|
target_link_libraries(kcm_knotificationconfig
|
|
KDE4::kdeui
|
|
KDE4::kcmutils
|
|
)
|
|
|
|
install(
|
|
TARGETS kcm_knotificationconfig
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES kcm_knotificationconfig.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|