2015-05-31 09:28:34 +00:00
|
|
|
set(protoc_files
|
2022-03-08 00:00:00 +00:00
|
|
|
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/main.cc
|
2015-05-31 09:28:34 +00:00
|
|
|
)
|
|
|
|
|
2022-04-28 22:17:51 +00:00
|
|
|
add_executable(protoc ${protoc_files} ${protobuf_version_rc_file})
|
2022-04-18 02:28:01 +00:00
|
|
|
target_link_libraries(protoc
|
|
|
|
libprotoc
|
|
|
|
libprotobuf
|
|
|
|
${protobuf_ABSL_USED_TARGETS}
|
|
|
|
)
|
2018-01-29 14:13:23 +00:00
|
|
|
add_executable(protobuf::protoc ALIAS protoc)
|
2018-04-27 21:44:38 +00:00
|
|
|
|
|
|
|
set_target_properties(protoc PROPERTIES
|
|
|
|
VERSION ${protobuf_VERSION})
|