diff options
author | 2025-05-18 10:09:16 +0200 | |
---|---|---|
committer | 2025-05-18 10:10:09 +0200 | |
commit | 4b4f73e7e3d55b8217bbbc2b51c0e147614be192 (patch) | |
tree | cf999aa79af17066b99b4821a090741c3a0bcc35 /CMakeLists.txt | |
parent | 268790307bde4859ac6ee5ac6c3d19ada9ed5a11 (diff) | |
download | tris-4b4f73e7e3d55b8217bbbc2b51c0e147614be192.tar.gz tris-4b4f73e7e3d55b8217bbbc2b51c0e147614be192.zip |
Add list utility
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 f2087c9..130231e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,6 +34,8 @@ add_executable(tris src/main/engine/engine.h src/main/engine/engine.c src/main/game.h - src/main/game.c) + src/main/game.c + src/main/util/list.h + src/main/util/list.c) target_link_libraries(tris PRIVATE X11 GL GLX) |