mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
fixed "undefined reference" for boost::system library
This commit is contained in:
parent
62606f11f5
commit
7df2baf6b0
1 changed files with 2 additions and 1 deletions
|
@ -40,7 +40,8 @@ set(crypto_headers
|
||||||
add_executable(crypto-tests
|
add_executable(crypto-tests
|
||||||
${crypto_sources}
|
${crypto_sources}
|
||||||
${crypto_headers})
|
${crypto_headers})
|
||||||
target_link_libraries(crypto-tests)
|
target_link_libraries(crypto-tests
|
||||||
|
${Boost_SYSTEM_LIBRARY})
|
||||||
set_property(TARGET crypto-tests
|
set_property(TARGET crypto-tests
|
||||||
PROPERTY
|
PROPERTY
|
||||||
FOLDER "tests")
|
FOLDER "tests")
|
||||||
|
|
Loading…
Reference in a new issue