1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 00:37:34 +00:00
serenity/Games/Breakout/CMakeLists.txt
Andreas Kling 8e4e77fcf4 Breakout: Add a very simple breakout game :^)
Made with HackStudio! This needs some love to feel like a proper game,
but the basics are here.
2020-11-09 13:34:27 +01:00

7 lines
103 B
CMake

set(SOURCES
main.cpp
Game.cpp
)
serenity_bin(Breakout)
target_link_libraries(Breakout LibGUI)