aboutsummaryrefslogtreecommitdiff
path: root/cmake/protoc.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/protoc.cmake')
-rw-r--r--cmake/protoc.cmake9
1 files changed, 8 insertions, 1 deletions
diff --git a/cmake/protoc.cmake b/cmake/protoc.cmake
index 5777b16e..9bf6f5a9 100644
--- a/cmake/protoc.cmake
+++ b/cmake/protoc.cmake
@@ -2,6 +2,13 @@ set(protoc_files
${protobuf_source_dir}/src/google/protobuf/compiler/main.cc
)
-add_executable(protoc ${protoc_files})
+set(protoc_rc_files
+ ${CMAKE_CURRENT_BINARY_DIR}/version.rc
+)
+
+add_executable(protoc ${protoc_files} ${protoc_rc_files})
target_link_libraries(protoc libprotobuf libprotoc)
add_executable(protobuf::protoc ALIAS protoc)
+
+set_target_properties(protoc PROPERTIES
+ VERSION ${protobuf_VERSION})