-
Notifications
You must be signed in to change notification settings - Fork 791
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix link order between ed25519 and needed symbols in interface.cpp
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
add_library( | ||
crypto_lib interface.cpp random_pool.hpp random_pool.cpp | ||
nano_ed25519 interface.cpp) | ||
|
||
target_link_libraries(ed25519 nano_ed25519) | ||
|
||
add_library( | ||
crypto_lib random_pool.hpp random_pool.cpp | ||
random_pool_shuffle.hpp secure_memory.hpp secure_memory.cpp) | ||
|
||
target_link_libraries(crypto_lib blake2 ${CRYPTOPP_LIBRARY}) | ||
target_link_libraries(crypto_lib blake2 ed25519 ${CRYPTOPP_LIBRARY}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters