From 506ebe96790cd5c8e22552bbf32fb29886375637 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Wed, 4 Mar 2020 17:46:34 +0100 Subject: [PATCH] Cmake: Update Proto comment --- cmake/cpp.cmake | 2 +- cmake/dotnet.cmake | 2 +- cmake/java.cmake | 2 +- cmake/python.cmake | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmake/cpp.cmake b/cmake/cpp.cmake index c5e34909fe..39bb3abd96 100644 --- a/cmake/cpp.cmake +++ b/cmake/cpp.cmake @@ -276,7 +276,7 @@ foreach(PROTO_FILE IN LISTS proto_files) "--cpp_out=${PROJECT_BINARY_DIR}" ${PROTO_FILE} DEPENDS ${PROTO_FILE} protobuf::protoc - COMMENT "Running C++ protocol buffer compiler on ${PROTO_FILE}" + COMMENT "Generate C++ protocol buffer for ${PROTO_FILE}" VERBATIM) list(APPEND PROTO_HDRS ${PROTO_HDR}) list(APPEND PROTO_SRCS ${PROTO_SRC}) diff --git a/cmake/dotnet.cmake b/cmake/dotnet.cmake index f6d3141f26..9633f52b2d 100644 --- a/cmake/dotnet.cmake +++ b/cmake/dotnet.cmake @@ -41,7 +41,7 @@ foreach(PROTO_FILE ${proto_dotnet_files}) "--csharp_opt=file_extension=.pb.cs" ${PROTO_FILE} DEPENDS ${PROTO_FILE} protobuf::protoc - COMMENT "Running C++ protocol buffer compiler on ${PROTO_FILE}" + COMMENT "Generate C# protocol buffer for ${PROTO_FILE}" VERBATIM) list(APPEND PROTO_DOTNETS ${PROTO_DOTNET}) endforeach() diff --git a/cmake/java.cmake b/cmake/java.cmake index 1c7d755051..98c446ef4a 100644 --- a/cmake/java.cmake +++ b/cmake/java.cmake @@ -39,7 +39,7 @@ foreach(PROTO_FILE ${proto_java_files}) "--java_out=${PROJECT_BINARY_DIR}/java/com/google/" ${PROTO_FILE} DEPENDS ${PROTO_FILE} protobuf::protoc - COMMENT "Running C++ protocol buffer compiler on ${PROTO_FILE}" + COMMENT "Generate Java protocol buffer for ${PROTO_FILE}" VERBATIM) list(APPEND PROTO_JAVAS ${PROTO_JAVA}) endforeach() diff --git a/cmake/python.cmake b/cmake/python.cmake index 198da72d2b..9b6ba55ab0 100644 --- a/cmake/python.cmake +++ b/cmake/python.cmake @@ -61,7 +61,7 @@ foreach(PROTO_FILE ${proto_py_files}) "--python_out=${PROJECT_BINARY_DIR}/python" ${PROTO_FILE} DEPENDS ${PROTO_FILE} protobuf::protoc - COMMENT "Running C++ protocol buffer compiler on ${PROTO_FILE}" + COMMENT "Generate Python protocol buffer for ${PROTO_FILE}" VERBATIM) list(APPEND PROTO_PYS ${PROTO_PY}) endforeach()