1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00
serenity/Userland/Applications/Settings/CMakeLists.txt
Andreas Kling 87a22a77e9 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.
2021-07-26 00:39:10 +02:00

12 lines
189 B
CMake

serenity_component(
Settings
REQUIRED
TARGETS Settings
)
set(SOURCES
main.cpp
)
serenity_app(Settings ICON app-settings)
target_link_libraries(Settings LibGUI LibDesktop)