Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8dac46 commit bbd2576Copy full SHA for bbd2576
cmake/conan_build.cmake
@@ -2,13 +2,13 @@ list(APPEND CMAKE_PREFIX_PATH "${CMAKE_BINARY_DIR}")
2
3
if(BTCPP_GROOT_INTERFACE)
4
find_package(ZeroMQ REQUIRED)
5
- list(APPEND BTCPP_EXTRA_LIBRARIES ZeroMQ::libzmq-static)
+ list(APPEND BTCPP_EXTRA_LIBRARIES ${ZeroMQ_LIBRARIES})
6
message(STATUS "ZeroMQ_LIBRARIES: ${ZeroMQ_LIBRARIES}")
7
endif()
8
9
if(BTCPP_SQLITE_LOGGING)
10
find_package(SQLite3 REQUIRED)
11
- list(APPEND BTCPP_EXTRA_LIBRARIES SQLite::SQLite3)
+ list(APPEND BTCPP_EXTRA_LIBRARIES ${SQLite3_LIBRARIES})
12
message(STATUS "SQLite3_LIBRARIES: ${SQLite3_LIBRARIES}")
13
14
0 commit comments