From 65a5ea404fdbd19f3996a11348c2e7e09e8f06a4 Mon Sep 17 00:00:00 2001 From: Stefan Zabka Date: Tue, 16 Jun 2020 12:50:47 +0200 Subject: Added ppmlib to cmake and threapool.h --- 04_exercise/CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to '04_exercise/CMakeLists.txt') diff --git a/04_exercise/CMakeLists.txt b/04_exercise/CMakeLists.txt index 18f3fb7..642da4c 100644 --- a/04_exercise/CMakeLists.txt +++ b/04_exercise/CMakeLists.txt @@ -6,7 +6,7 @@ target_link_libraries(quicksort PRIVATE threadpool) add_library(threadpool threadpool.c) target_link_libraries(threadpool PRIVATE array Threads::Threads arena_list) -target_link_libraries(threadpool INTERFACE warnings) +target_link_libraries(threadpool INTERFACE warnings ppmlib) add_executable(fibonacci main.c) @@ -23,4 +23,7 @@ target_link_libraries(arena_test PRIVATE arena_list) add_library(rwlock rwlock/rwlock.c) target_include_directories(rwlock PUBLIC rwlock) -target_link_libraries(rwlock INTERFACE warnings) \ No newline at end of file +target_link_libraries(rwlock INTERFACE warnings) + +add_library(ppmlib INTERFACE) +target_include_directories(ppmlib INTERFACE ppmlib) \ No newline at end of file -- cgit v1.2.3-54-g00ecf