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

Settings: Add a very simple Settings application

This is really just a launcher app that gathers all the installed apps
in the "Settings" category and presents them in a single window.
This commit is contained in:
Andreas Kling 2021-07-25 21:52:39 +02:00
parent 99f57d0a40
commit 87a22a77e9
5 changed files with 154 additions and 0 deletions

View file

@ -0,0 +1,12 @@
serenity_component(
Settings
REQUIRED
TARGETS Settings
)
set(SOURCES
main.cpp
)
serenity_app(Settings ICON app-settings)
target_link_libraries(Settings LibGUI LibDesktop)