-
Notifications
You must be signed in to change notification settings - Fork 786
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix linker warnings about duplicate libs (#4299)
Fix linker warnings about duplicate libs
- Loading branch information
1 parent
6a01fc4
commit a1cc7a5
Showing
12 changed files
with
22 additions
and
59 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
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,8 @@ | ||
add_library( | ||
crypto_lib interface.cpp random_pool.hpp random_pool.cpp | ||
random_pool_shuffle.hpp secure_memory.hpp secure_memory.cpp) | ||
add_library(nano_ed25519 interface.cpp) | ||
|
||
target_link_libraries(crypto_lib blake2 ${CRYPTOPP_LIBRARY}) | ||
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,3 @@ | ||
add_executable(ipc_flatbuffers_test_client entry.cpp) | ||
|
||
target_link_libraries( | ||
ipc_flatbuffers_test_client | ||
nano_lib | ||
Boost::filesystem | ||
Boost::log_setup | ||
Boost::log | ||
Boost::program_options | ||
Boost::system | ||
Boost::thread) | ||
target_link_libraries(ipc_flatbuffers_test_client node) |
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
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
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
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
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
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
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
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
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,7 +1,6 @@ | ||
add_executable(slow_test entry.cpp node.cpp vote_cache.cpp vote_processor.cpp | ||
bootstrap.cpp) | ||
|
||
target_link_libraries(slow_test secure node test_common gtest | ||
libminiupnpc-static) | ||
target_link_libraries(slow_test test_common) | ||
|
||
include_directories(${CMAKE_SOURCE_DIR}/submodules) |