diff options
author | Linus Groh <mail@linusgroh.de> | 2021-06-20 11:13:22 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-20 11:13:30 +0100 |
commit | ade85d980b54575be56620a885b1dd6844128a63 (patch) | |
tree | 983e61f5b79891444c4c6ac3769691c93a2ca680 /Userland/Games | |
parent | 8f6ac0db1cc99fdbf89e1a70d1e50f0329def595 (diff) | |
download | serenity-ade85d980b54575be56620a885b1dd6844128a63.zip |
FlappyBug: Add missing component declaration
The PR for this pre-dates the concept of components, so it was forgotten
to add one.
Diffstat (limited to 'Userland/Games')
-rw-r--r-- | Userland/Games/FlappyBug/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Userland/Games/FlappyBug/CMakeLists.txt b/Userland/Games/FlappyBug/CMakeLists.txt index dd77a434da..27ea98dede 100644 --- a/Userland/Games/FlappyBug/CMakeLists.txt +++ b/Userland/Games/FlappyBug/CMakeLists.txt @@ -1,3 +1,9 @@ +serenity_component( + FlappyBug + RECOMMENDED + TARGETS FlappyBug +) + set(SOURCES main.cpp Game.cpp |