mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:28:12 +00:00

This commit adds a new settings dialog for the Calendar application and applet. It allows the user to specify their preferred first day of the week.
17 lines
421 B
CMake
17 lines
421 B
CMake
serenity_component(
|
|
CalendarSettings
|
|
RECOMMENDED
|
|
TARGETS CalendarSettings
|
|
)
|
|
|
|
compile_gml(CalendarSettingsWidget.gml CalendarSettingsWidgetGML.h calendar_settings_widget_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
CalendarSettingsWidget.cpp
|
|
CalendarSettingsWidget.h
|
|
CalendarSettingsWidgetGML.h
|
|
)
|
|
|
|
serenity_app(CalendarSettings ICON app-calendar)
|
|
target_link_libraries(CalendarSettings LibConfig LibGUI LibMain)
|