summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
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)