File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,13 @@ find_package(Protobuf REQUIRED)
88find_package (Python3 COMPONENTS Interpreter REQUIRED )
99
1010message (STATUS "Using protobuf ${Protobuf_VERSION} " )
11+ message (STATUS "Protobuf libraries: ${Protobuf_LIBRARIES} " )
1112
1213# We need to link abseil if protobuf version is 6.x or higher
1314if (Protobuf_VERSION VERSION_GREATER_EQUAL "6.0.0" )
1415 message (STATUS "Protobuf version is ${Protobuf_VERSION} , linking abseil" )
1516 find_package (absl REQUIRED )
16- set (PROTOBUF_LIBRARIES ${PROTOBUF_LIBRARIES } absl::log absl::strings absl::base absl::status absl::log_internal_check_op absl::log_internal_message)
17+ set (Protobuf_LIBRARIES ${Protobuf_LIBRARIES } absl::log absl::strings absl::base absl::status absl::log_internal_check_op absl::log_internal_message)
1718endif ()
1819
1920file (GLOB ProtoFiles "protobuf_definitions/*.proto" )
@@ -28,7 +29,7 @@ protobuf_generate_python(PROTO_PY ${ProtoFiles})
2829add_library (blueyeprotocol SHARED ${ProtoSources} ${ProtoHeaders} )
2930
3031set (EXT_LIBS
31- ${PROTOBUF_LIBRARIES }
32+ ${Protobuf_LIBRARIES }
3233)
3334
3435target_link_libraries (blueyeprotocol PUBLIC ${EXT_LIBS} )
You can’t perform that action at this time.
0 commit comments