2013-08-31 15:23:04 +02:00
|
|
|
set(calendar_SRCS
|
|
|
|
calendarplugin.cpp
|
|
|
|
#incidencemodifier.cpp
|
|
|
|
calendar.cpp
|
|
|
|
calendardata.cpp
|
|
|
|
#calendardayhelper.cpp
|
|
|
|
#calendarroleproxymodel.cpp
|
|
|
|
#datetimerangefiltermodel.cpp
|
|
|
|
daysmodel.cpp
|
2015-11-02 15:33:15 -05:00
|
|
|
eventdatadecorator.cpp
|
2015-11-04 13:55:32 -05:00
|
|
|
eventpluginsmanager.cpp
|
2013-08-31 15:23:04 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
add_library(calendarplugin SHARED ${calendar_SRCS})
|
|
|
|
|
|
|
|
target_link_libraries(calendarplugin
|
2013-11-11 18:27:16 +01:00
|
|
|
Qt5::Core
|
|
|
|
Qt5::Quick
|
|
|
|
Qt5::Qml
|
2013-10-22 00:40:17 +02:00
|
|
|
Qt5::Gui
|
2015-11-02 15:33:15 -05:00
|
|
|
KF5::I18n
|
2015-11-16 14:26:26 -05:00
|
|
|
KF5::CalendarEvents
|
2013-08-31 15:23:04 +02:00
|
|
|
)
|
|
|
|
|
2015-01-10 17:47:31 +00:00
|
|
|
install(TARGETS calendarplugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/calendar)
|
|
|
|
install(DIRECTORY qml/ DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/calendar)
|