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

Screensaver: Add a screensaver launcher application

Similar to the Settings application, this adds a single Screensaver
application to launch all screensaver demos. This is to declutter the
taskbar menu a bit.
This commit is contained in:
Timothy Flynn 2023-01-02 12:14:04 -05:00 committed by Andreas Kling
parent 3d6b0e60ca
commit 9c5915b5b4
7 changed files with 129 additions and 3 deletions

View file

@ -0,0 +1,11 @@
serenity_component(
Screensaver
TARGETS Screensaver
)
set(SOURCES
main.cpp
)
serenity_app(Screensaver ICON app-screensaver)
target_link_libraries(Screensaver PRIVATE LibDesktop LibGUI LibCore LibGfx LibMain)