1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 21:27:36 +00:00

Calendar: Add ability to view events

This commit is contained in:
Sanil 2024-02-04 17:46:11 +05:30 committed by Andrew Kaster
parent 0d41f6cf89
commit 433fe3dc26
7 changed files with 179 additions and 1 deletions

View file

@ -5,6 +5,7 @@ serenity_component(
compile_gml(CalendarWidget.gml CalendarWidgetGML.cpp)
compile_gml(AddEventDialog.gml AddEventDialogGML.cpp)
compile_gml(ViewEventDialog.gml ViewEventDialogGML.cpp)
set(SOURCES
AddEventDialog.cpp
@ -15,6 +16,9 @@ set(SOURCES
EventCalendar.cpp
EventManager.cpp
main.cpp
ViewEventDialog.cpp
ViewEventDialogGML.cpp
ViewEventWidget.cpp
)
serenity_app(Calendar ICON app-calendar)