mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 07:17:34 +00:00
ClockSettings: Add a GUI application to set the system time zone
This application can be expanded with other clock-related options. For an initial iteration, it has just an option to change the time zone.
This commit is contained in:
parent
6057a2ca30
commit
d365559839
7 changed files with 177 additions and 0 deletions
17
Userland/Applications/ClockSettings/CMakeLists.txt
Normal file
17
Userland/Applications/ClockSettings/CMakeLists.txt
Normal file
|
@ -0,0 +1,17 @@
|
|||
serenity_component(
|
||||
ClockSettings
|
||||
RECOMMENDED
|
||||
TARGETS ClockSettings
|
||||
)
|
||||
|
||||
compile_gml(ClockSettingsWidget.gml ClockSettingsWidgetGML.h clock_settings_widget_gml)
|
||||
|
||||
set(SOURCES
|
||||
main.cpp
|
||||
ClockSettingsWidget.cpp
|
||||
ClockSettingsWidget.h
|
||||
ClockSettingsWidgetGML.h
|
||||
)
|
||||
|
||||
serenity_app(ClockSettings ICON app-analog-clock) # FIXME: Create a ClockSettings icon.
|
||||
target_link_libraries(ClockSettings LibGUI LibMain)
|
Loading…
Add table
Add a link
Reference in a new issue