Skip to content

Commit 910ff5c

Browse files
committed
fix conan compilation
1 parent bf79555 commit 910ff5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/conan_build.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ list(APPEND CMAKE_PREFIX_PATH "${CMAKE_BINARY_DIR}")
22

33
if(BTCPP_GROOT_INTERFACE)
44
find_package(ZeroMQ REQUIRED)
5-
list(APPEND BTCPP_EXTRA_LIBRARIES ${ZeroMQ_LIBRARIES})
5+
list(APPEND BTCPP_EXTRA_LIBRARIES ZeroMQ::libzmq-static)
66
message(STATUS "ZeroMQ_LIBRARIES: ${ZeroMQ_LIBRARIES}")
77
endif()
88

99
if(BTCPP_SQLITE_LOGGING)
1010
find_package(SQLite3 REQUIRED)
11-
list(APPEND BTCPP_EXTRA_LIBRARIES ${SQLite3_LIBRARIES})
11+
list(APPEND BTCPP_EXTRA_LIBRARIES SQLite::SQLite3)
1212
message(STATUS "SQLite3_LIBRARIES: ${SQLite3_LIBRARIES}")
1313
endif()
1414

0 commit comments

Comments
 (0)