diff options
author | tobtoht <tob@featherwallet.org> | 2024-02-24 16:25:42 +0100 |
---|---|---|
committer | tobtoht <tob@featherwallet.org> | 2024-02-24 16:26:43 +0100 |
commit | cdab0d489c8b12558655467d5544b60c1713737b (patch) | |
tree | a1c500269f7fa0ed811ae446274053741d15e488 /src | |
parent | depends: move sodium to packages (diff) | |
download | monero-cdab0d489c8b12558655467d5544b60c1713737b.tar.xz |
cmake: require libsodium
Diffstat (limited to 'src')
-rw-r--r-- | src/crypto/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/device_trezor/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/CMakeLists.txt b/src/crypto/CMakeLists.txt index 5dfc121ce..9ac376780 100644 --- a/src/crypto/CMakeLists.txt +++ b/src/crypto/CMakeLists.txt @@ -72,7 +72,7 @@ target_link_libraries(cncrypto epee randomx ${Boost_SYSTEM_LIBRARY} - ${SODIUM_LIBRARY} + ${sodium_LIBRARIES} PRIVATE ${EXTRA_LIBRARIES}) diff --git a/src/device_trezor/CMakeLists.txt b/src/device_trezor/CMakeLists.txt index 2d5614507..b3107b2d1 100644 --- a/src/device_trezor/CMakeLists.txt +++ b/src/device_trezor/CMakeLists.txt @@ -92,7 +92,7 @@ if(DEVICE_TREZOR_READY) ringct_basic cryptonote_core common - ${SODIUM_LIBRARY} + ${sodium_LIBRARIES} ${Boost_CHRONO_LIBRARY} ${Protobuf_LIBRARY} ${TREZOR_LIBUSB_LIBRARIES} |