1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 05:07:45 +00:00

Games: Add BrickGame

This commit is contained in:
Oleg Kosenkov 2022-11-01 10:36:51 -04:00 committed by Andrew Kaster
parent 73f4cfa930
commit 46c6176fad
9 changed files with 745 additions and 0 deletions

View file

@ -0,0 +1,13 @@
serenity_component(
BrickGame
RECOMMENDED
TARGETS BrickGame
)
set(SOURCES
main.cpp
BrickGame.cpp
)
serenity_app(BrickGame ICON app-brickgame)
target_link_libraries(BrickGame PRIVATE LibGUI LibCore LibGfx LibConfig LibMain LibDesktop)