1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 18:37:35 +00:00

Calendar: Use GML for AddEventDialog

This commit is contained in:
lanmonster 2023-10-06 14:24:37 -07:00 committed by Andreas Kling
parent 1a6affc64b
commit 97cc5b2da4
3 changed files with 134 additions and 77 deletions

View file

@ -4,6 +4,7 @@ serenity_component(
)
stringify_gml(CalendarWindow.gml CalendarWindowGML.h calendar_window_gml)
stringify_gml(AddEventDialog.gml AddEventDialogGML.h add_event_dialog_gml)
set(SOURCES
AddEventDialog.cpp
@ -14,7 +15,7 @@ set(SOURCES
)
set(GENERATED_SOURCES
CalendarWindowGML.h
CalendarWindowGML.h AddEventDialogGML.h
)
serenity_app(Calendar ICON app-calendar)