From b2972927ea0bff9d72594ed23f97e302a0022440 Mon Sep 17 00:00:00 2001 From: Dusan Klinec Date: Tue, 25 Sep 2018 19:30:22 +0200 Subject: [PATCH] osx compilation fix: missing boost libs added --- contrib/epee/src/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/epee/src/CMakeLists.txt b/contrib/epee/src/CMakeLists.txt index 0b5e7ae6c..bc437deb9 100644 --- a/contrib/epee/src/CMakeLists.txt +++ b/contrib/epee/src/CMakeLists.txt @@ -54,7 +54,9 @@ endif() target_link_libraries(epee PUBLIC easylogging + ${Boost_CHRONO_LIBRARY} ${Boost_FILESYSTEM_LIBRARY} + ${Boost_THREAD_LIBRARY} PRIVATE ${OPENSSL_LIBRARIES} ${EXTRA_LIBRARIES})