diff options
author | 2025-05-21 17:00:19 +0200 | |
---|---|---|
committer | 2025-05-21 17:13:23 +0200 | |
commit | 0e8e745f88617fe5933eb7981198ac24cb7b1ee4 (patch) | |
tree | 834d6414217ee9c4d073eb68cbe26ba9bb42c6b2 /CMakeLists.txt | |
parent | 25c0bda9ca1e436370a9e2a671d3195de0e90902 (diff) | |
download | tris-0e8e745f88617fe5933eb7981198ac24cb7b1ee4.tar.gz tris-0e8e745f88617fe5933eb7981198ac24cb7b1ee4.zip |
Add the Cell struct
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 21ad1bc..71d5913 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,6 +39,8 @@ add_executable(tris src/main/util/list.h src/main/util/list.c src/main/engine/ui/types.h - src/main/engine/types.h) + src/main/engine/types.h + src/main/game/cell.h + src/main/game/cell.c) target_link_libraries(tris PRIVATE X11 GL GLX m) |