Removing link dependencies to Boost::boost as it's not actually a target. (#4040)
This commit is contained in:
parent
73ab4abb9d
commit
d8fa4b7beb
11 changed files with 8 additions and 29 deletions
|
@ -66,5 +66,4 @@ target_link_libraries(
|
|||
gtest
|
||||
libminiupnpc-static
|
||||
Boost::log_setup
|
||||
Boost::log
|
||||
Boost::boost)
|
||||
Boost::log)
|
||||
|
|
|
@ -8,5 +8,4 @@ target_link_libraries(
|
|||
Boost::log
|
||||
Boost::program_options
|
||||
Boost::system
|
||||
Boost::thread
|
||||
Boost::boost)
|
||||
Boost::thread)
|
||||
|
|
|
@ -93,7 +93,6 @@ target_link_libraries(
|
|||
ipc_flatbuffers_lib
|
||||
${CRYPTOPP_LIBRARY}
|
||||
${CMAKE_DL_LIBS}
|
||||
Boost::boost
|
||||
Boost::program_options)
|
||||
|
||||
if(NANO_STACKTRACE_BACKTRACE)
|
||||
|
|
|
@ -6,6 +6,5 @@ target_link_libraries(
|
|||
secure
|
||||
test_common
|
||||
gtest
|
||||
Boost::boost
|
||||
Boost::coroutine
|
||||
Boost::context)
|
||||
|
|
|
@ -1,13 +1,6 @@
|
|||
add_executable(nano_node daemon.cpp daemon.hpp entry.cpp)
|
||||
|
||||
target_link_libraries(
|
||||
nano_node
|
||||
node
|
||||
rpc
|
||||
secure
|
||||
argon2
|
||||
Boost::boost
|
||||
${PLATFORM_LIBS})
|
||||
target_link_libraries(nano_node node rpc secure argon2 ${PLATFORM_LIBS})
|
||||
|
||||
if(NANO_STACKTRACE_BACKTRACE)
|
||||
target_link_libraries(nano_node backtrace)
|
||||
|
|
|
@ -9,8 +9,7 @@ target_link_libraries(
|
|||
Boost::log
|
||||
Boost::program_options
|
||||
Boost::system
|
||||
Boost::thread
|
||||
Boost::boost)
|
||||
Boost::thread)
|
||||
|
||||
target_compile_definitions(
|
||||
nano_rpc
|
||||
|
|
|
@ -242,7 +242,6 @@ target_link_libraries(
|
|||
Boost::program_options
|
||||
Boost::system
|
||||
Boost::thread
|
||||
Boost::boost
|
||||
rocksdb
|
||||
${DISKHASH}
|
||||
${CMAKE_DL_LIBS}
|
||||
|
|
|
@ -15,4 +15,4 @@ add_library(
|
|||
rpc_request_processor.hpp
|
||||
rpc_request_processor.cpp)
|
||||
|
||||
target_link_libraries(rpc nano_lib ${OPENSSL_LIBRARIES} Boost::boost)
|
||||
target_link_libraries(rpc nano_lib ${OPENSSL_LIBRARIES})
|
||||
|
|
|
@ -60,7 +60,6 @@ target_link_libraries(
|
|||
ed25519
|
||||
crypto_lib
|
||||
lmdb
|
||||
Boost::boost
|
||||
Boost::system
|
||||
Boost::filesystem)
|
||||
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
add_executable(slow_test entry.cpp node.cpp vote_cache.cpp vote_processor.cpp)
|
||||
|
||||
target_link_libraries(
|
||||
slow_test
|
||||
secure
|
||||
node
|
||||
test_common
|
||||
gtest
|
||||
libminiupnpc-static
|
||||
Boost::boost)
|
||||
target_link_libraries(slow_test secure node test_common gtest
|
||||
libminiupnpc-static)
|
||||
|
|
|
@ -13,5 +13,4 @@ add_library(
|
|||
testutil.hpp
|
||||
testutil.cpp)
|
||||
|
||||
target_link_libraries(test_common node gtest Boost::log_setup Boost::log
|
||||
Boost::boost)
|
||||
target_link_libraries(test_common node gtest Boost::log_setup Boost::log)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue