diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-09-29 22:13:34 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-09-29 22:13:34 +0200 |
commit | 735de189abfa4154984f78f60ea4fea6e78b2f77 (patch) | |
tree | 75844dc4e3ce479804a02cacc2b8668c6ecb264c | |
parent | Merge pull request #4439 (diff) | |
parent | osx compilation fix: missing boost libs added (diff) | |
download | monero-735de189abfa4154984f78f60ea4fea6e78b2f77.tar.xz |
Merge pull request #4443
b2972927 osx compilation fix: missing boost libs added (Dusan Klinec)
-rw-r--r-- | contrib/epee/src/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
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}) |