ladybird/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

13 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)