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 36363a2 commit a17ca94Copy full SHA for a17ca94
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_LIBRARIES})
+ list(APPEND BTCPP_EXTRA_LIBRARIES ZeroMQ::libzmq-static)
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 ${SQLite3_LIBRARIES})
+ list(APPEND BTCPP_EXTRA_LIBRARIES SQLite::SQLite3)
12
message(STATUS "SQLite3_LIBRARIES: ${SQLite3_LIBRARIES}")
13
14
0 commit comments