1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 03:08:11 +00:00
serenity/Userland/Games/Breakout/CMakeLists.txt
Pedro Pereira 6e6228d40d Breakout: Port to LibMain
Simplified two pledge() and two unveil() by using TRY().
2021-11-22 23:44:09 +01:00

14 lines
228 B
CMake

serenity_component(
Breakout
RECOMMENDED
TARGETS Breakout
)
set(SOURCES
main.cpp
Game.cpp
LevelSelectDialog.cpp
)
serenity_app(Breakout ICON app-breakout)
target_link_libraries(Breakout LibGUI LibMain)