aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/unified_agent_client
diff options
context:
space:
mode:
authorsvidyuk <svidyuk@yandex-team.com>2023-08-30 20:31:54 +0300
committersvidyuk <svidyuk@yandex-team.com>2023-08-30 20:50:06 +0300
commitc76aaf823d18acf064939d806427b39cea1bbe16 (patch)
treed85585d1cea05124f3f264965654164b38a0591e /library/cpp/unified_agent_client
parente7fbce1e36ca8d9a32abcc07805749d572a83dd3 (diff)
downloadydb-c76aaf823d18acf064939d806427b39cea1bbe16.tar.gz
Fix input variable missprint
Diffstat (limited to 'library/cpp/unified_agent_client')
-rw-r--r--library/cpp/unified_agent_client/CMakeLists.darwin-x86_64.txt6
-rw-r--r--library/cpp/unified_agent_client/CMakeLists.linux-aarch64.txt6
-rw-r--r--library/cpp/unified_agent_client/CMakeLists.linux-x86_64.txt6
-rw-r--r--library/cpp/unified_agent_client/CMakeLists.windows-x86_64.txt6
-rw-r--r--library/cpp/unified_agent_client/proto/CMakeLists.darwin-x86_64.txt28
-rw-r--r--library/cpp/unified_agent_client/proto/CMakeLists.linux-aarch64.txt28
-rw-r--r--library/cpp/unified_agent_client/proto/CMakeLists.linux-x86_64.txt28
-rw-r--r--library/cpp/unified_agent_client/proto/CMakeLists.windows-x86_64.txt28
8 files changed, 136 insertions, 0 deletions
diff --git a/library/cpp/unified_agent_client/CMakeLists.darwin-x86_64.txt b/library/cpp/unified_agent_client/CMakeLists.darwin-x86_64.txt
index ac4481155f4..c681f29c5b6 100644
--- a/library/cpp/unified_agent_client/CMakeLists.darwin-x86_64.txt
+++ b/library/cpp/unified_agent_client/CMakeLists.darwin-x86_64.txt
@@ -7,6 +7,12 @@
add_subdirectory(proto)
+get_built_tool_path(
+ TOOL_enum_parser_bin
+ TOOL_enum_parser_dependency
+ tools/enum_parser/enum_parser
+ enum_parser
+)
add_library(library-cpp-unified_agent_client)
target_include_directories(library-cpp-unified_agent_client PRIVATE
diff --git a/library/cpp/unified_agent_client/CMakeLists.linux-aarch64.txt b/library/cpp/unified_agent_client/CMakeLists.linux-aarch64.txt
index 01a8bd743de..84821c33695 100644
--- a/library/cpp/unified_agent_client/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/unified_agent_client/CMakeLists.linux-aarch64.txt
@@ -7,6 +7,12 @@
add_subdirectory(proto)
+get_built_tool_path(
+ TOOL_enum_parser_bin
+ TOOL_enum_parser_dependency
+ tools/enum_parser/enum_parser
+ enum_parser
+)
add_library(library-cpp-unified_agent_client)
target_include_directories(library-cpp-unified_agent_client PRIVATE
diff --git a/library/cpp/unified_agent_client/CMakeLists.linux-x86_64.txt b/library/cpp/unified_agent_client/CMakeLists.linux-x86_64.txt
index 01a8bd743de..84821c33695 100644
--- a/library/cpp/unified_agent_client/CMakeLists.linux-x86_64.txt
+++ b/library/cpp/unified_agent_client/CMakeLists.linux-x86_64.txt
@@ -7,6 +7,12 @@
add_subdirectory(proto)
+get_built_tool_path(
+ TOOL_enum_parser_bin
+ TOOL_enum_parser_dependency
+ tools/enum_parser/enum_parser
+ enum_parser
+)
add_library(library-cpp-unified_agent_client)
target_include_directories(library-cpp-unified_agent_client PRIVATE
diff --git a/library/cpp/unified_agent_client/CMakeLists.windows-x86_64.txt b/library/cpp/unified_agent_client/CMakeLists.windows-x86_64.txt
index ac4481155f4..c681f29c5b6 100644
--- a/library/cpp/unified_agent_client/CMakeLists.windows-x86_64.txt
+++ b/library/cpp/unified_agent_client/CMakeLists.windows-x86_64.txt
@@ -7,6 +7,12 @@
add_subdirectory(proto)
+get_built_tool_path(
+ TOOL_enum_parser_bin
+ TOOL_enum_parser_dependency
+ tools/enum_parser/enum_parser
+ enum_parser
+)
add_library(library-cpp-unified_agent_client)
target_include_directories(library-cpp-unified_agent_client PRIVATE
diff --git a/library/cpp/unified_agent_client/proto/CMakeLists.darwin-x86_64.txt b/library/cpp/unified_agent_client/proto/CMakeLists.darwin-x86_64.txt
index 13553aefad4..6f12b2aa5ee 100644
--- a/library/cpp/unified_agent_client/proto/CMakeLists.darwin-x86_64.txt
+++ b/library/cpp/unified_agent_client/proto/CMakeLists.darwin-x86_64.txt
@@ -6,6 +6,30 @@
# original buildsystem will not be accepted.
+get_built_tool_path(
+ TOOL_grpc_cpp_bin
+ TOOL_grpc_cpp_dependency
+ contrib/tools/protoc/plugins/grpc_cpp
+ grpc_cpp
+)
+get_built_tool_path(
+ TOOL_protoc_bin
+ TOOL_protoc_dependency
+ contrib/tools/protoc/bin
+ protoc
+)
+get_built_tool_path(
+ TOOL_cpp_styleguide_bin
+ TOOL_cpp_styleguide_dependency
+ contrib/tools/protoc/plugins/cpp_styleguide
+ cpp_styleguide
+)
+get_built_tool_path(
+ TOOL_enum_parser_bin
+ TOOL_enum_parser_dependency
+ tools/enum_parser/enum_parser
+ enum_parser
+)
add_library(cpp-unified_agent_client-proto)
set_property(TARGET cpp-unified_agent_client-proto PROPERTY
@@ -39,3 +63,7 @@ target_proto_outs(cpp-unified_agent_client-proto
--cpp_out=${CMAKE_BINARY_DIR}/
--cpp_styleguide_out=${CMAKE_BINARY_DIR}/
)
+target_proto_plugin(cpp-unified_agent_client-proto
+ grpc_cpp
+ grpc_cpp
+)
diff --git a/library/cpp/unified_agent_client/proto/CMakeLists.linux-aarch64.txt b/library/cpp/unified_agent_client/proto/CMakeLists.linux-aarch64.txt
index 3a8c77f4b35..571e21b861e 100644
--- a/library/cpp/unified_agent_client/proto/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/unified_agent_client/proto/CMakeLists.linux-aarch64.txt
@@ -6,6 +6,30 @@
# original buildsystem will not be accepted.
+get_built_tool_path(
+ TOOL_grpc_cpp_bin
+ TOOL_grpc_cpp_dependency
+ contrib/tools/protoc/plugins/grpc_cpp
+ grpc_cpp
+)
+get_built_tool_path(
+ TOOL_protoc_bin
+ TOOL_protoc_dependency
+ contrib/tools/protoc/bin
+ protoc
+)
+get_built_tool_path(
+ TOOL_cpp_styleguide_bin
+ TOOL_cpp_styleguide_dependency
+ contrib/tools/protoc/plugins/cpp_styleguide
+ cpp_styleguide
+)
+get_built_tool_path(
+ TOOL_enum_parser_bin
+ TOOL_enum_parser_dependency
+ tools/enum_parser/enum_parser
+ enum_parser
+)
add_library(cpp-unified_agent_client-proto)
set_property(TARGET cpp-unified_agent_client-proto PROPERTY
@@ -40,3 +64,7 @@ target_proto_outs(cpp-unified_agent_client-proto
--cpp_out=${CMAKE_BINARY_DIR}/
--cpp_styleguide_out=${CMAKE_BINARY_DIR}/
)
+target_proto_plugin(cpp-unified_agent_client-proto
+ grpc_cpp
+ grpc_cpp
+)
diff --git a/library/cpp/unified_agent_client/proto/CMakeLists.linux-x86_64.txt b/library/cpp/unified_agent_client/proto/CMakeLists.linux-x86_64.txt
index 3a8c77f4b35..571e21b861e 100644
--- a/library/cpp/unified_agent_client/proto/CMakeLists.linux-x86_64.txt
+++ b/library/cpp/unified_agent_client/proto/CMakeLists.linux-x86_64.txt
@@ -6,6 +6,30 @@
# original buildsystem will not be accepted.
+get_built_tool_path(
+ TOOL_grpc_cpp_bin
+ TOOL_grpc_cpp_dependency
+ contrib/tools/protoc/plugins/grpc_cpp
+ grpc_cpp
+)
+get_built_tool_path(
+ TOOL_protoc_bin
+ TOOL_protoc_dependency
+ contrib/tools/protoc/bin
+ protoc
+)
+get_built_tool_path(
+ TOOL_cpp_styleguide_bin
+ TOOL_cpp_styleguide_dependency
+ contrib/tools/protoc/plugins/cpp_styleguide
+ cpp_styleguide
+)
+get_built_tool_path(
+ TOOL_enum_parser_bin
+ TOOL_enum_parser_dependency
+ tools/enum_parser/enum_parser
+ enum_parser
+)
add_library(cpp-unified_agent_client-proto)
set_property(TARGET cpp-unified_agent_client-proto PROPERTY
@@ -40,3 +64,7 @@ target_proto_outs(cpp-unified_agent_client-proto
--cpp_out=${CMAKE_BINARY_DIR}/
--cpp_styleguide_out=${CMAKE_BINARY_DIR}/
)
+target_proto_plugin(cpp-unified_agent_client-proto
+ grpc_cpp
+ grpc_cpp
+)
diff --git a/library/cpp/unified_agent_client/proto/CMakeLists.windows-x86_64.txt b/library/cpp/unified_agent_client/proto/CMakeLists.windows-x86_64.txt
index 13553aefad4..6f12b2aa5ee 100644
--- a/library/cpp/unified_agent_client/proto/CMakeLists.windows-x86_64.txt
+++ b/library/cpp/unified_agent_client/proto/CMakeLists.windows-x86_64.txt
@@ -6,6 +6,30 @@
# original buildsystem will not be accepted.
+get_built_tool_path(
+ TOOL_grpc_cpp_bin
+ TOOL_grpc_cpp_dependency
+ contrib/tools/protoc/plugins/grpc_cpp
+ grpc_cpp
+)
+get_built_tool_path(
+ TOOL_protoc_bin
+ TOOL_protoc_dependency
+ contrib/tools/protoc/bin
+ protoc
+)
+get_built_tool_path(
+ TOOL_cpp_styleguide_bin
+ TOOL_cpp_styleguide_dependency
+ contrib/tools/protoc/plugins/cpp_styleguide
+ cpp_styleguide
+)
+get_built_tool_path(
+ TOOL_enum_parser_bin
+ TOOL_enum_parser_dependency
+ tools/enum_parser/enum_parser
+ enum_parser
+)
add_library(cpp-unified_agent_client-proto)
set_property(TARGET cpp-unified_agent_client-proto PROPERTY
@@ -39,3 +63,7 @@ target_proto_outs(cpp-unified_agent_client-proto
--cpp_out=${CMAKE_BINARY_DIR}/
--cpp_styleguide_out=${CMAKE_BINARY_DIR}/
)
+target_proto_plugin(cpp-unified_agent_client-proto
+ grpc_cpp
+ grpc_cpp
+)