diff options
author | 2025-05-15 22:56:35 +0200 | |
---|---|---|
committer | 2025-05-16 00:07:31 +0200 | |
commit | b1e81de69e08c04b8d78ce7f6a7687d395550b35 (patch) | |
tree | e9d89f1165b1cdcebfeaa3592c64834acdf9a1bc /CMakeLists.txt | |
parent | 5c726aea53703620aa4a44cfe3c16bcb2d4cc06a (diff) | |
download | tris-b1e81de69e08c04b8d78ce7f6a7687d395550b35.tar.gz tris-b1e81de69e08c04b8d78ce7f6a7687d395550b35.zip |
Add util
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 feda5cf..6ceab8e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,8 @@ find_package(OpenGL REQUIRED) add_executable(tris src/main/main.c src/main/ui/ui.h - src/main/ui/x11/ui.c) + src/main/ui/x11/ui.c + src/main/util.h + src/main/util.c) target_link_libraries(tris PRIVATE X11 GL GLX) |