mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
cc5ea3aa4c
In the "inspiration" for this game, messages are displayed on top of the game area in case an invalid guess is inputted. After a few seconds, they disappear. In a similar fashion, a statusbar is created on the game window and similar messages are outputted there.
20 lines
366 B
CMake
20 lines
366 B
CMake
serenity_component(
|
|
MasterWord
|
|
RECOMMENDED
|
|
TARGETS MasterWord
|
|
)
|
|
|
|
compile_gml(MasterWord.gml MasterWordGML.h master_word_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
WordGame.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
MasterWordGML.h
|
|
)
|
|
|
|
serenity_app(MasterWord ICON app-masterword)
|
|
target_link_libraries(MasterWord PRIVATE LibCore LibGfx LibGUI LibConfig LibMain LibDesktop)
|