diff options
author | 2025-05-17 00:24:22 +0200 | |
---|---|---|
committer | 2025-05-17 00:33:59 +0200 | |
commit | 0e90703b5a44445955560f6f2cddf2ff8dbd1a58 (patch) | |
tree | 8eadb2590ede50270e8e6404e0878e488cc5363b /CMakeLists.txt | |
parent | decc4fb9f0eb2494eaad2e1a1c8f804150245060 (diff) | |
download | tris-0e90703b5a44445955560f6f2cddf2ff8dbd1a58.tar.gz tris-0e90703b5a44445955560f6f2cddf2ff8dbd1a58.zip |
Add game.c and game.h
Contains the function to draw the field.
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 91f0290..6815afb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,6 +30,8 @@ add_executable(tris src/main/util.h src/main/util.c src/main/engine/engine.h - src/main/engine/engine.c) + src/main/engine/engine.c + src/main/game.h + src/main/game.c) target_link_libraries(tris PRIVATE X11 GL GLX) |