1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 13:35:07 +00:00
serenity/Userland/Games/FlappyBug/CMakeLists.txt
Pedro Pereira 85ae298b85 FlappyBug: Port to LibMain
Simplified two pledge() and two unveil() by using TRY().
2021-11-22 21:02:14 -08:00

13 lines
217 B
CMake

serenity_component(
FlappyBug
RECOMMENDED
TARGETS FlappyBug
)
set(SOURCES
main.cpp
Game.cpp
)
serenity_app(FlappyBug ICON app-flappybug)
target_link_libraries(FlappyBug LibGUI LibConfig LibMain)