serenity/Userland/Games/FlappyBug/CMakeLists.txt
Linus Groh ade85d980b FlappyBug: Add missing component declaration
The PR for this pre-dates the concept of components, so it was forgotten
to add one.
2021-06-20 11:13:30 +01:00

13 lines
199 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)