mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 02:58:12 +00:00
18 lines
331 B
CMake
18 lines
331 B
CMake
serenity_component(
|
|
GameOfLife
|
|
RECOMMENDED
|
|
TARGETS GameOfLife
|
|
)
|
|
|
|
compile_gml(GameOfLife.gml GameOfLifeGML.h game_of_life_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
Board.cpp
|
|
BoardWidget.cpp
|
|
GameOfLifeGML.h
|
|
Pattern.cpp
|
|
)
|
|
|
|
serenity_app(GameOfLife ICON app-gameoflife)
|
|
target_link_libraries(GameOfLife LibGUI LibMain)
|