mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
24 lines
510 B
CMake
24 lines
510 B
CMake
project(plasma-applet-calendar)
|
|
|
|
set(calendar_SRCS
|
|
calendar.cpp
|
|
)
|
|
|
|
kde4_add_plugin(plasma_applet_calendar ${calendar_SRCS})
|
|
target_link_libraries(plasma_applet_calendar
|
|
KDE4::plasma
|
|
KDE4::kcmutils
|
|
)
|
|
|
|
install(
|
|
TARGETS plasma_applet_calendar
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
install(
|
|
FILES plasma-applet-calendar.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|
|
install(
|
|
FILES mini-calendar.svgz
|
|
DESTINATION ${KDE4_DATA_INSTALL_DIR}/desktoptheme/default/calendar/
|
|
)
|