mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 19:57:36 +00:00
Games: Add Flood
This commit is contained in:
parent
02baa1b005
commit
7eca8f7e62
15 changed files with 822 additions and 0 deletions
23
Userland/Games/Flood/CMakeLists.txt
Normal file
23
Userland/Games/Flood/CMakeLists.txt
Normal file
|
@ -0,0 +1,23 @@
|
|||
serenity_component(
|
||||
Flood
|
||||
RECOMMENDED
|
||||
TARGETS Flood
|
||||
)
|
||||
|
||||
compile_gml(FloodWindow.gml FloodWindowGML.h flood_window_gml)
|
||||
compile_gml(SettingsDialog.gml SettingsDialogGML.h settings_dialog_gml)
|
||||
|
||||
set(SOURCES
|
||||
Board.cpp
|
||||
BoardWidget.cpp
|
||||
SettingsDialog.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
set(GENERATED_SOURCES
|
||||
FloodWindowGML.h
|
||||
SettingsDialogGML.h
|
||||
)
|
||||
|
||||
serenity_app(Flood ICON app-flood)
|
||||
target_link_libraries(Flood LibConfig LibGUI LibMain LibDesktop)
|
Loading…
Add table
Add a link
Reference in a new issue