diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-08-20 16:51:39 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-08-20 16:51:39 -0400 |
commit | c61c09a5675da819c81463899a863cd016d28cdf (patch) | |
tree | 6c6a3403686fb1cb60dd12c1639f49c82902db0e | |
parent | Merge pull request #7879 (diff) | |
parent | epee: link with Boost_SYSTEM_LIBRARY (diff) | |
download | monero-c61c09a5675da819c81463899a863cd016d28cdf.tar.xz |
Merge pull request #7882
e48fae3 epee: link with Boost_SYSTEM_LIBRARY (selsta)
-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 6e0af6730..321231ba6 100644 --- a/contrib/epee/src/CMakeLists.txt +++ b/contrib/epee/src/CMakeLists.txt @@ -61,6 +61,7 @@ target_link_libraries(epee ${Boost_FILESYSTEM_LIBRARY} ${Boost_THREAD_LIBRARY} ${Boost_REGEX_LIBRARY} + ${Boost_SYSTEM_LIBRARY} ${OPENSSL_LIBRARIES} PRIVATE ${EXTRA_LIBRARIES}) @@ -69,6 +70,7 @@ if (USE_READLINE AND (GNU_READLINE_FOUND OR (DEPENDS AND NOT MINGW))) target_link_libraries(epee_readline PUBLIC easylogging + ${Boost_SYSTEM_LIBRARY} PRIVATE ${GNU_READLINE_LIBRARY}) endif() |