diff options
author | 2025-05-22 16:24:58 +0200 | |
---|---|---|
committer | 2025-05-22 16:24:58 +0200 | |
commit | 9f4a0889287186907332c0186b15802297d807f3 (patch) | |
tree | 5b064ccf3cec738f18c1299dee8879e51e852224 /CMakeLists.txt | |
parent | 39efa999f190e81f8aa63948165bc52faab00375 (diff) | |
download | tris-9f4a0889287186907332c0186b15802297d807f3.tar.gz tris-9f4a0889287186907332c0186b15802297d807f3.zip |
Move Circle struct in circle.h
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 1232136..efb94f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,9 @@ add_executable(tris src/main/game/domain/board.c src/main/game/domain/board.h src/main/engine/domain/color.c - src/main/engine/domain/color.h) + src/main/engine/domain/color.h + src/main/engine/shape/circle.c + src/main/engine/shape/circle.h) target_include_directories(tris PRIVATE log/src) |