diff options
author | 2025-05-21 23:32:50 +0200 | |
---|---|---|
committer | 2025-05-21 23:32:50 +0200 | |
commit | 7288bdd42360109f26a684431fa286ea265d07a4 (patch) | |
tree | 2dc070a742a3f61accbcf6f9afd8449d34dbd01c /CMakeLists.txt | |
parent | 56ee373d51e6d3acf3e284a59c8f852913b82e64 (diff) | |
download | tris-7288bdd42360109f26a684431fa286ea265d07a4.tar.gz tris-7288bdd42360109f26a684431fa286ea265d07a4.zip |
Remove util.* for the liblog
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 71d5913..5cc956a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,8 +30,6 @@ add_executable(tris src/main/main.c src/main/engine/ui/ui.h src/main/engine/ui/x11/ui.c - src/main/util.h - src/main/util.c src/main/engine/engine.h src/main/engine/engine.c src/main/game/game.h @@ -43,4 +41,6 @@ add_executable(tris src/main/game/cell.h src/main/game/cell.c) -target_link_libraries(tris PRIVATE X11 GL GLX m) +target_include_directories(tris PRIVATE log/src) + +target_link_libraries(tris PRIVATE X11 GL GLX m ${CMAKE_SOURCE_DIR}/log/liblog.a) |