diff options
author | 2025-05-22 11:28:54 +0200 | |
---|---|---|
committer | 2025-05-22 11:30:36 +0200 | |
commit | 0a47d6fd0d10d5ea049c68e42e373935e4a283ee (patch) | |
tree | f385558e99200070f1393c836cbe0eaf567bd8d2 /CMakeLists.txt | |
parent | 1053ec415d3c8fc08923a157f473364b8df59737 (diff) | |
download | tris-0a47d6fd0d10d5ea049c68e42e373935e4a283ee.tar.gz tris-0a47d6fd0d10d5ea049c68e42e373935e4a283ee.zip |
Add Color 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 5cc956a..7d0525d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,9 @@ add_executable(tris src/main/engine/ui/types.h src/main/engine/types.h src/main/game/cell.h - src/main/game/cell.c) + src/main/game/cell.c + src/main/engine/domain/color.c + src/main/engine/domain/color.h) target_include_directories(tris PRIVATE log/src) |