From 5fd8c7c0f60ae506249ec2043d2ead2ee66d019b Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 23 Jun 2018 13:53:21 +0200 Subject: [PATCH] Fix cmake file to use libutils instead of libutilswut --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9c8d753..e0cc7ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ file(GLOB_RECURSE HEADER_FILES *.h*) add_library(gui STATIC ${SOURCE_FILES} ${HEADER_FILES}) target_link_libraries(gui - utilswut) + utils) include_directories("$ENV{WUT_ROOT}/include/libutils" REQUIRED)