diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-03-16 15:33:39 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-03-16 15:33:39 +0300 |
commit | 7df2baf6b0d3a5d9a914538c166c373e7a4ed672 (patch) | |
tree | c20fc2ae530ed2a04229dbd2d73c0dd7922516e0 | |
parent | Wallet::store_to(path, password) implemented; (diff) | |
download | monero-7df2baf6b0d3a5d9a914538c166c373e7a4ed672.tar.xz |
fixed "undefined reference" for boost::system library
-rw-r--r-- | tests/crypto/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/crypto/CMakeLists.txt b/tests/crypto/CMakeLists.txt index f42428a65..86946aa5c 100644 --- a/tests/crypto/CMakeLists.txt +++ b/tests/crypto/CMakeLists.txt @@ -40,7 +40,8 @@ set(crypto_headers add_executable(crypto-tests ${crypto_sources} ${crypto_headers}) -target_link_libraries(crypto-tests) +target_link_libraries(crypto-tests + ${Boost_SYSTEM_LIBRARY}) set_property(TARGET crypto-tests PROPERTY FOLDER "tests") |