You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
689 B

add_definitions("-DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII")
add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
set(holidays-plugin_SRCS
holidaysevents.cpp
)
add_library(holidaysevents MODULE ${holidays-plugin_SRCS})
target_link_libraries(holidaysevents Qt::Core
KF5::ConfigCore
KF5::Holidays
KF5::CalendarEvents
)
install (TARGETS holidaysevents
DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasmacalendarplugins
)
install (FILES HolidaysConfig.qml
DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasmacalendarplugins/holidays
)
add_subdirectory(qmlhelper)