1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:18:11 +00:00
serenity/Userland/Games/GameOfLife/CMakeLists.txt
Andres Crucitti d99991e39c Games: Add GameOfLife
This patch introduces a new game based on Conway's Game of Life.
2021-05-15 17:44:21 +01:00

11 lines
230 B
CMake

compile_gml(GameOfLife.gml GameOfLifeGML.h game_of_life_gml)
set(SOURCES
Board.cpp
BoardWidget.cpp
GameOfLifeGML.h
main.cpp
)
serenity_app(GameOfLife ICON app-gameoflife)
target_link_libraries(GameOfLife LibGUI)