1

以下正确地将可执行文件链接到 protobuffer。

protobuf_generate_cpp(proto_srcs proto_hdrs simple.proto
add_executable(executable a.cc "${proto_srcs}")
target_link_libraries(executable "${PROTOBUF_LIBRARIES}")

以下内容未正确链接库。

protobuf_generate_cpp(proto_srcs proto_hdrs simple.proto
add_library(proto_lib "${proto_srcs}")
target_link_libraries(proto_lib "${PROTOBUF_LIBRARIES}")
...
target_link_libraries(some_executable proto_lib)

问题似乎在于调试与优化库的处理。在第一个中,这是正确处理的,而在第二个中,它尝试链接到调试/优化的库字符串,错误随之而来。

ld: library not found for -loptimized;/usr/local/lib/libprotobuf.dylib;debug;/usr/local/lib/libprotobuf.dylib

我尝试过引用参数并更改正在创建的库的类型,但我不知所措。有人知道我在做什么错吗?

4

1 回答 1

3

删除周围的双引号${PROTOBUF_LIBRARIES},它们使 CMake 将列表变量视为纯字符串。

于 2013-08-19T09:07:50.510 回答