diff options
author | 2025-05-16 18:59:09 +0200 | |
---|---|---|
committer | 2025-05-16 18:59:09 +0200 | |
commit | decc4fb9f0eb2494eaad2e1a1c8f804150245060 (patch) | |
tree | 0524b1255b2f5b22847ab48f83055d2c452b2d3d /CMakeLists.txt | |
parent | e896b10d48f6393df25cfbc5fd3413cbc5ccada3 (diff) | |
download | tris-decc4fb9f0eb2494eaad2e1a1c8f804150245060.tar.gz tris-decc4fb9f0eb2494eaad2e1a1c8f804150245060.zip |
Add engine_init
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 c27a87a..91f0290 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,6 +28,8 @@ add_executable(tris src/main/ui/ui.h src/main/ui/x11/ui.c src/main/util.h - src/main/util.c) + src/main/util.c + src/main/engine/engine.h + src/main/engine/engine.c) target_link_libraries(tris PRIVATE X11 GL GLX) |