27 lines
633 B
CMake
Raw Normal View History

set(calendar_SRCS
calendarplugin.cpp
#incidencemodifier.cpp
calendar.cpp
calendardata.cpp
#calendardayhelper.cpp
#calendarroleproxymodel.cpp
#datetimerangefiltermodel.cpp
daysmodel.cpp
eventdatadecorator.cpp
eventpluginsmanager.cpp
)
add_library(calendarplugin SHARED ${calendar_SRCS})
target_link_libraries(calendarplugin
Qt5::Core
Qt5::Quick
Qt5::Qml
Qt5::Gui
KF5::I18n
KF5::CalendarEvents
)
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)