serenity/Userland/Demos/Tubes/CMakeLists.txt
Jelle Raaijmakers 18b6bdb563 Demos+LibDesktop: Centralize screensaver logic
We have 3 demos with pretty similar window logic and quitting behavior
on user activity, so centralize that into `Desktop::Screensaver`.
2022-12-27 12:38:08 +01:00

14 lines
239 B
CMake

serenity_component(
Tubes
TARGETS Tubes
)
set(SOURCES
Shapes.cpp
Tubes.cpp
main.cpp
)
serenity_app(Tubes ICON app-tubes)
target_link_libraries(Tubes PRIVATE LibCore LibDesktop LibGfx LibGL LibGUI LibMain)