diff options
author | 2025-05-18 11:48:51 +0200 | |
---|---|---|
committer | 2025-05-18 11:50:57 +0200 | |
commit | 987209dde8f477535a8805aeef9ecf35b7cb5e4f (patch) | |
tree | 17ec359f14c30b0072fc9e0b439025a47eca8a6e /CMakeLists.txt | |
parent | 24339d371c2194405dc151e8de0c319d976a78ba (diff) | |
download | tris-987209dde8f477535a8805aeef9ecf35b7cb5e4f.tar.gz tris-987209dde8f477535a8805aeef9ecf35b7cb5e4f.zip |
Move the game engine inside a dedicated directory
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 130231e..5443132 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,8 +33,8 @@ add_executable(tris src/main/util.c src/main/engine/engine.h src/main/engine/engine.c - src/main/game.h - src/main/game.c + src/main/game/game.h + src/main/game/game.c src/main/util/list.h src/main/util/list.c) |