diff options
author | svidyuk <svidyuk@yandex-team.ru> | 2022-04-07 01:46:38 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.ru> | 2022-04-07 01:46:38 +0300 |
commit | 2e2b332461784be2e8c8d2efd5b0c1649c26b5b1 (patch) | |
tree | a0a83a46c4c2e5ce12d1470b501705ad43b2e593 | |
parent | 700cb57397974489a2222cb0c2ede33215722e28 (diff) | |
download | ydb-2e2b332461784be2e8c8d2efd5b0c1649c26b5b1.tar.gz |
Fix proto namespace support for plugins
ref:64f38ab703c48a08c49a2ede68481651c4d51f13
66 files changed, 26 insertions, 444 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index d1edffaffa..59f51dd29e 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -674,7 +674,7 @@ macro JAVA_PROTO_PLUGIN(NAME, TOOL, DEPS[]) { # tag:proto tag:cpp-specific macro _ADD_CPP_PROTO_OUT(Suf) { - .SEM=append_target_property PROTOC_EXTRA_OUTS $Suf ${output;hide;suf=.o:Suf} + .SEM=append_target_property PROTOC_EXTRA_OUTS $Suf ${output;hide;suf=.o:Suf} && set_target_property PROTO_NAMESPACE $PROTO_NAMESPACE SET_APPEND(CPP_PROTO_OUTS \${output;hide;norel;nopath;noext;suf=$Suf:File}) # XXX fix variable expansion in plugins @@ -1174,7 +1174,7 @@ module _BASE_UNIT: _BARE_UNIT { CPP_PROTO_CMDLINE=${cwd;rootdir;input:File} $PROTOC -I=./$PROTO_NAMESPACE -I=$ARCADIA_ROOT/$PROTO_NAMESPACE ${pre=-I=:_PROTO__INCLUDE} -I=$ARCADIA_BUILD_ROOT -I=$PROTOBUF_PATH --cpp_out=${CPP_PROTO_PLUGINS}$ARCADIA_BUILD_ROOT/$PROTO_NAMESPACE $PROTOC_STYLEGUIDE_OUT $PROTOC_PLUGIN_STYLEGUIDE ${input;rootrel:File} CPP_PROTO_OUTS+=${output;hide;norel;nopath;noext:File.pb.cc} ${output;main;hide;norel;nopath;noext:File.pb.h} - CPP_PROTO_OUTS_SEM+=${output;hide;norel;nopath;noext:File.pb.cc} ${output;main;hide;norel;nopath;noext:File.pb.h} + CPP_PROTO_OUTS_SEM+=${output;main;hide;norel;nopath;noext:File.pb.h} CPP_EV_OUTS+=${output;hide;norel:File.pb.cc} ${output;hide;norel:File.pb.h} when ($PY_PROTOS_FOR == "yes") { diff --git a/cloud/bitbucket/common-api/yandex/cloud/api/CMakeLists.txt b/cloud/bitbucket/common-api/yandex/cloud/api/CMakeLists.txt index d7b00adfc3..895a0abdd9 100644 --- a/cloud/bitbucket/common-api/yandex/cloud/api/CMakeLists.txt +++ b/cloud/bitbucket/common-api/yandex/cloud/api/CMakeLists.txt @@ -11,6 +11,9 @@ add_library(yandex-cloud-api) set_property(TARGET yandex-cloud-api PROPERTY PROTOC_EXTRA_OUTS .grpc.pb.cc .grpc.pb.h ) +set_property(TARGET yandex-cloud-api PROPERTY + PROTO_NAMESPACE cloud/bitbucket/common-api +) target_include_directories(yandex-cloud-api PUBLIC ${CMAKE_BINARY_DIR}/cloud/bitbucket/common-api ) @@ -28,9 +31,6 @@ target_link_libraries(yandex-cloud-api PUBLIC target_proto_messages(yandex-cloud-api PRIVATE ${CMAKE_SOURCE_DIR}/cloud/bitbucket/common-api/yandex/cloud/api/operation.proto ) -target_sources(yandex-cloud-api PRIVATE - ${CMAKE_BINARY_DIR}/cloud/bitbucket/common-api/yandex/cloud/api/operation.pb.cc -) target_proto_addincls(yandex-cloud-api ./cloud/bitbucket/common-api ${CMAKE_SOURCE_DIR}/cloud/bitbucket/common-api diff --git a/cloud/bitbucket/common-api/yandex/cloud/api/tools/CMakeLists.txt b/cloud/bitbucket/common-api/yandex/cloud/api/tools/CMakeLists.txt index a17d38e8a0..ee192d71f6 100644 --- a/cloud/bitbucket/common-api/yandex/cloud/api/tools/CMakeLists.txt +++ b/cloud/bitbucket/common-api/yandex/cloud/api/tools/CMakeLists.txt @@ -11,6 +11,9 @@ add_library(cloud-api-tools) set_property(TARGET cloud-api-tools PROPERTY PROTOC_EXTRA_OUTS .grpc.pb.cc .grpc.pb.h ) +set_property(TARGET cloud-api-tools PROPERTY + PROTO_NAMESPACE cloud/bitbucket/common-api +) target_include_directories(cloud-api-tools PUBLIC ${CMAKE_BINARY_DIR}/cloud/bitbucket/common-api ) @@ -27,9 +30,6 @@ target_link_libraries(cloud-api-tools PUBLIC target_proto_messages(cloud-api-tools PRIVATE ${CMAKE_SOURCE_DIR}/cloud/bitbucket/common-api/yandex/cloud/api/tools/options.proto ) -target_sources(cloud-api-tools PRIVATE - ${CMAKE_BINARY_DIR}/cloud/bitbucket/common-api/yandex/cloud/api/tools/options.pb.cc -) target_proto_addincls(cloud-api-tools ./cloud/bitbucket/common-api ${CMAKE_SOURCE_DIR}/cloud/bitbucket/common-api diff --git a/cloud/bitbucket/private-api/yandex/cloud/priv/CMakeLists.txt b/cloud/bitbucket/private-api/yandex/cloud/priv/CMakeLists.txt index 57ce5f4354..4ac967704e 100644 --- a/cloud/bitbucket/private-api/yandex/cloud/priv/CMakeLists.txt +++ b/cloud/bitbucket/private-api/yandex/cloud/priv/CMakeLists.txt @@ -11,6 +11,9 @@ add_library(yandex-cloud-priv) set_property(TARGET yandex-cloud-priv PROPERTY PROTOC_EXTRA_OUTS .grpc.pb.cc .grpc.pb.h ) +set_property(TARGET yandex-cloud-priv PROPERTY + PROTO_NAMESPACE cloud/bitbucket/private-api +) target_include_directories(yandex-cloud-priv PUBLIC ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api ) @@ -28,10 +31,6 @@ target_proto_messages(yandex-cloud-priv PRIVATE ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/sensitive.proto ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/validation.proto ) -target_sources(yandex-cloud-priv PRIVATE - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/sensitive.pb.cc - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/validation.pb.cc -) target_proto_addincls(yandex-cloud-priv ./cloud/bitbucket/private-api ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api diff --git a/cloud/bitbucket/private-api/yandex/cloud/priv/access/CMakeLists.txt b/cloud/bitbucket/private-api/yandex/cloud/priv/access/CMakeLists.txt index 578c7fa86e..292231e480 100644 --- a/cloud/bitbucket/private-api/yandex/cloud/priv/access/CMakeLists.txt +++ b/cloud/bitbucket/private-api/yandex/cloud/priv/access/CMakeLists.txt @@ -11,6 +11,9 @@ add_library(cloud-priv-access) set_property(TARGET cloud-priv-access PROPERTY PROTOC_EXTRA_OUTS .grpc.pb.cc .grpc.pb.h ) +set_property(TARGET cloud-priv-access PROPERTY + PROTO_NAMESPACE cloud/bitbucket/private-api +) target_include_directories(cloud-priv-access PUBLIC ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api ) @@ -28,9 +31,6 @@ target_link_libraries(cloud-priv-access PUBLIC target_proto_messages(cloud-priv-access PRIVATE ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/access/access.proto ) -target_sources(cloud-priv-access PRIVATE - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/access/access.pb.cc -) target_proto_addincls(cloud-priv-access ./cloud/bitbucket/private-api ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api diff --git a/cloud/bitbucket/private-api/yandex/cloud/priv/operation/CMakeLists.txt b/cloud/bitbucket/private-api/yandex/cloud/priv/operation/CMakeLists.txt index 94d0f6f800..2c46cc6a81 100644 --- a/cloud/bitbucket/private-api/yandex/cloud/priv/operation/CMakeLists.txt +++ b/cloud/bitbucket/private-api/yandex/cloud/priv/operation/CMakeLists.txt @@ -11,6 +11,9 @@ add_library(cloud-priv-operation) set_property(TARGET cloud-priv-operation PROPERTY PROTOC_EXTRA_OUTS .grpc.pb.cc .grpc.pb.h ) +set_property(TARGET cloud-priv-operation PROPERTY + PROTO_NAMESPACE cloud/bitbucket/private-api +) target_include_directories(cloud-priv-operation PUBLIC ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api ) @@ -27,9 +30,6 @@ target_link_libraries(cloud-priv-operation PUBLIC target_proto_messages(cloud-priv-operation PRIVATE ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/operation/operation.proto ) -target_sources(cloud-priv-operation PRIVATE - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/operation/operation.pb.cc -) target_proto_addincls(cloud-priv-operation ./cloud/bitbucket/private-api ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api diff --git a/cloud/bitbucket/private-api/yandex/cloud/priv/quota/CMakeLists.txt b/cloud/bitbucket/private-api/yandex/cloud/priv/quota/CMakeLists.txt index c8bc229101..4e9abb7d04 100644 --- a/cloud/bitbucket/private-api/yandex/cloud/priv/quota/CMakeLists.txt +++ b/cloud/bitbucket/private-api/yandex/cloud/priv/quota/CMakeLists.txt @@ -11,6 +11,9 @@ add_library(cloud-priv-quota) set_property(TARGET cloud-priv-quota PROPERTY PROTOC_EXTRA_OUTS .grpc.pb.cc .grpc.pb.h ) +set_property(TARGET cloud-priv-quota PROPERTY + PROTO_NAMESPACE cloud/bitbucket/private-api +) target_include_directories(cloud-priv-quota PUBLIC ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api ) @@ -28,9 +31,6 @@ target_link_libraries(cloud-priv-quota PUBLIC target_proto_messages(cloud-priv-quota PRIVATE ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/quota/quota.proto ) -target_sources(cloud-priv-quota PRIVATE - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/quota/quota.pb.cc -) target_proto_addincls(cloud-priv-quota ./cloud/bitbucket/private-api ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api diff --git a/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/CMakeLists.txt b/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/CMakeLists.txt index e4e02ac570..e0b92c1325 100644 --- a/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/CMakeLists.txt +++ b/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/CMakeLists.txt @@ -11,6 +11,9 @@ add_library(serverless-functions-v1) set_property(TARGET serverless-functions-v1 PROPERTY PROTOC_EXTRA_OUTS .grpc.pb.cc .grpc.pb.h ) +set_property(TARGET serverless-functions-v1 PROPERTY + PROTO_NAMESPACE cloud/bitbucket/private-api +) target_include_directories(serverless-functions-v1 PUBLIC ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api ) @@ -38,14 +41,6 @@ target_proto_messages(serverless-functions-v1 PRIVATE ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/session.proto ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/session_service.proto ) -target_sources(serverless-functions-v1 PRIVATE - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/function.pb.cc - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/function_service.pb.cc - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/operation_service.pb.cc - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/quota_service.pb.cc - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/session.pb.cc - ${CMAKE_BINARY_DIR}/cloud/bitbucket/private-api/yandex/cloud/priv/serverless/functions/v1/session_service.pb.cc -) target_proto_addincls(serverless-functions-v1 ./cloud/bitbucket/private-api ${CMAKE_SOURCE_DIR}/cloud/bitbucket/private-api diff --git a/contrib/libs/apache/orc/CMakeLists.txt b/contrib/libs/apache/orc/CMakeLists.txt index 6705cbfe09..463c2b420e 100644 --- a/contrib/libs/apache/orc/CMakeLists.txt +++ b/contrib/libs/apache/orc/CMakeLists.txt @@ -59,7 +59,6 @@ target_sources(libs-apache-orc PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/apache/orc/c++/src/Writer.cc ${CMAKE_SOURCE_DIR}/contrib/libs/apache/orc/c++/src/io/InputStream.cc ${CMAKE_SOURCE_DIR}/contrib/libs/apache/orc/c++/src/io/OutputStream.cc - ${CMAKE_BINARY_DIR}/contrib/libs/apache/orc/proto/orc_proto.pb.cc ) target_proto_addincls(libs-apache-orc ./ diff --git a/contrib/libs/googleapis-common-protos/CMakeLists.txt b/contrib/libs/googleapis-common-protos/CMakeLists.txt index 1da5c7b8f4..5ceb3387d9 100644 --- a/contrib/libs/googleapis-common-protos/CMakeLists.txt +++ b/contrib/libs/googleapis-common-protos/CMakeLists.txt @@ -11,6 +11,9 @@ add_library(contrib-libs-googleapis-common-protos) set_property(TARGET contrib-libs-googleapis-common-protos PROPERTY PROTOC_EXTRA_OUTS .grpc.pb.cc .grpc.pb.h ) +set_property(TARGET contrib-libs-googleapis-common-protos PROPERTY + PROTO_NAMESPACE contrib/libs/googleapis-common-protos +) target_include_directories(contrib-libs-googleapis-common-protos PUBLIC ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos ) @@ -77,60 +80,6 @@ target_proto_messages(contrib-libs-googleapis-common-protos PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/googleapis-common-protos/google/type/quaternion.proto ${CMAKE_SOURCE_DIR}/contrib/libs/googleapis-common-protos/google/type/timeofday.proto ) -target_sources(contrib-libs-googleapis-common-protos PRIVATE - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/annotations.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/auth.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/backend.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/billing.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/client.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/config_change.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/consumer.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/context.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/control.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/distribution.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/documentation.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/endpoint.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/field_behavior.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/http.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/httpbody.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/label.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/launch_stage.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/log.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/logging.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/metric.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/monitored_resource.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/monitoring.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/quota.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/resource.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/routing.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/service.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/source_info.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/system_parameter.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/api/usage.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/cloud/extended_operations.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/cloud/location/locations.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/gapic/metadata/gapic_metadata.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/logging/type/http_request.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/logging/type/log_severity.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/longrunning/operations.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/rpc/code.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/rpc/context/attribute_context.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/rpc/error_details.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/rpc/status.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/calendar_period.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/color.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/date.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/datetime.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/dayofweek.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/expr.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/fraction.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/latlng.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/money.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/month.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/postal_address.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/quaternion.pb.cc - ${CMAKE_BINARY_DIR}/contrib/libs/googleapis-common-protos/google/type/timeofday.pb.cc -) target_proto_addincls(contrib-libs-googleapis-common-protos ./contrib/libs/googleapis-common-protos ${CMAKE_SOURCE_DIR}/contrib/libs/googleapis-common-protos diff --git a/library/cpp/actors/protos/CMakeLists.txt b/library/cpp/actors/protos/CMakeLists.txt index 3f421a344b..207460e2cc 100644 --- a/library/cpp/actors/protos/CMakeLists.txt +++ b/library/cpp/actors/protos/CMakeLists.txt @@ -19,12 +19,6 @@ target_proto_messages(cpp-actors-protos PRIVATE ${CMAKE_SOURCE_DIR}/library/cpp/actors/protos/services_common.proto ${CMAKE_SOURCE_DIR}/library/cpp/actors/protos/unittests.proto ) -target_sources(cpp-actors-protos PRIVATE - ${CMAKE_BINARY_DIR}/library/cpp/actors/protos/actors.pb.cc - ${CMAKE_BINARY_DIR}/library/cpp/actors/protos/interconnect.pb.cc - ${CMAKE_BINARY_DIR}/library/cpp/actors/protos/services_common.pb.cc - ${CMAKE_BINARY_DIR}/library/cpp/actors/protos/unittests.pb.cc -) target_proto_addincls(cpp-actors-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/library/cpp/histogram/adaptive/protos/CMakeLists.txt b/library/cpp/histogram/adaptive/protos/CMakeLists.txt index 444c6c85dc..5047c52591 100644 --- a/library/cpp/histogram/adaptive/protos/CMakeLists.txt +++ b/library/cpp/histogram/adaptive/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(histogram-adaptive-protos PUBLIC target_proto_messages(histogram-adaptive-protos PRIVATE ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/protos/histo.proto ) -target_sources(histogram-adaptive-protos PRIVATE - ${CMAKE_BINARY_DIR}/library/cpp/histogram/adaptive/protos/histo.pb.cc -) target_proto_addincls(histogram-adaptive-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/library/cpp/lwtrace/protos/CMakeLists.txt b/library/cpp/lwtrace/protos/CMakeLists.txt index b08053444f..bed5cf2669 100644 --- a/library/cpp/lwtrace/protos/CMakeLists.txt +++ b/library/cpp/lwtrace/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(cpp-lwtrace-protos PUBLIC target_proto_messages(cpp-lwtrace-protos PRIVATE ${CMAKE_SOURCE_DIR}/library/cpp/lwtrace/protos/lwtrace.proto ) -target_sources(cpp-lwtrace-protos PRIVATE - ${CMAKE_BINARY_DIR}/library/cpp/lwtrace/protos/lwtrace.pb.cc -) target_proto_addincls(cpp-lwtrace-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/library/cpp/messagebus/monitoring/CMakeLists.txt b/library/cpp/messagebus/monitoring/CMakeLists.txt index f389218166..b7390f7c7f 100644 --- a/library/cpp/messagebus/monitoring/CMakeLists.txt +++ b/library/cpp/messagebus/monitoring/CMakeLists.txt @@ -17,9 +17,6 @@ target_link_libraries(cpp-messagebus-monitoring PUBLIC target_proto_messages(cpp-messagebus-monitoring PRIVATE ${CMAKE_SOURCE_DIR}/library/cpp/messagebus/monitoring/mon_proto.proto ) -target_sources(cpp-messagebus-monitoring PRIVATE - ${CMAKE_BINARY_DIR}/library/cpp/messagebus/monitoring/mon_proto.pb.cc -) target_proto_addincls(cpp-messagebus-monitoring ./ ${CMAKE_SOURCE_DIR}/ diff --git a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt index 7a0c8e732a..3c051b63a3 100644 --- a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt +++ b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(encode-legacy_protobuf-protos PUBLIC target_proto_messages(encode-legacy_protobuf-protos PRIVATE ${CMAKE_SOURCE_DIR}/library/cpp/monlib/encode/legacy_protobuf/protos/metric_meta.proto ) -target_sources(encode-legacy_protobuf-protos PRIVATE - ${CMAKE_BINARY_DIR}/library/cpp/monlib/encode/legacy_protobuf/protos/metric_meta.pb.cc -) target_proto_addincls(encode-legacy_protobuf-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/library/cpp/protobuf/util/proto/CMakeLists.txt b/library/cpp/protobuf/util/proto/CMakeLists.txt index 6b2ad285a6..df5df0af1a 100644 --- a/library/cpp/protobuf/util/proto/CMakeLists.txt +++ b/library/cpp/protobuf/util/proto/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(protobuf-util-proto PUBLIC target_proto_messages(protobuf-util-proto PRIVATE ${CMAKE_SOURCE_DIR}/library/cpp/protobuf/util/proto/merge.proto ) -target_sources(protobuf-util-proto PRIVATE - ${CMAKE_BINARY_DIR}/library/cpp/protobuf/util/proto/merge.pb.cc -) target_proto_addincls(protobuf-util-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/library/cpp/retry/protos/CMakeLists.txt b/library/cpp/retry/protos/CMakeLists.txt index 9cd13c271c..13969805cd 100644 --- a/library/cpp/retry/protos/CMakeLists.txt +++ b/library/cpp/retry/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(cpp-retry-protos PUBLIC target_proto_messages(cpp-retry-protos PRIVATE ${CMAKE_SOURCE_DIR}/library/cpp/retry/protos/retry_options.proto ) -target_sources(cpp-retry-protos PRIVATE - ${CMAKE_BINARY_DIR}/library/cpp/retry/protos/retry_options.pb.cc -) target_proto_addincls(cpp-retry-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.txt b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.txt index e104d0eedf..a6096564e8 100644 --- a/ydb/core/grpc_streaming/ut/grpc/CMakeLists.txt +++ b/ydb/core/grpc_streaming/ut/grpc/CMakeLists.txt @@ -20,9 +20,6 @@ target_link_libraries(grpc_streaming-ut-grpc PUBLIC target_proto_messages(grpc_streaming-ut-grpc PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/grpc_streaming/ut/grpc/streaming_service.proto ) -target_sources(grpc_streaming-ut-grpc PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/grpc_streaming/ut/grpc/streaming_service.pb.cc -) target_proto_addincls(grpc_streaming-ut-grpc ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/keyvalue/protos/CMakeLists.txt b/ydb/core/keyvalue/protos/CMakeLists.txt index 3310da7fb5..0f26493773 100644 --- a/ydb/core/keyvalue/protos/CMakeLists.txt +++ b/ydb/core/keyvalue/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(core-keyvalue-protos PUBLIC target_proto_messages(core-keyvalue-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/keyvalue/protos/events.proto ) -target_sources(core-keyvalue-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/keyvalue/protos/events.pb.cc -) target_proto_addincls(core-keyvalue-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/protos/CMakeLists.txt b/ydb/core/protos/CMakeLists.txt index 3e6df2490b..ff5d89bbe2 100644 --- a/ydb/core/protos/CMakeLists.txt +++ b/ydb/core/protos/CMakeLists.txt @@ -145,123 +145,6 @@ target_proto_messages(ydb-core-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/protos/scheme_board_mon.proto ${CMAKE_SOURCE_DIR}/ydb/core/protos/sys_view.proto ) -target_sources(ydb-core-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/protos/alloc.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/base.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/bind_channel_storage_pool.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/blobstorage.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/blobstorage_controller.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/blobstorage_disk.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/blobstorage_disk_color.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/blobstorage_pdisk_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/blobstorage_vdisk_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/blobstorage_vdisk_internal.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/blobstorage_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/blockstore_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/filestore_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/bootstrapper.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/change_exchange.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/channel_purpose.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/cms.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/config_units.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/console.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/console_base.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/console_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/console_tenant.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_tx_allocator.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_bs_controller.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_coordinator.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_columnshard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_datashard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_hive.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_kesus.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_keyvalue.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_pq.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_replication.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_schemeshard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_sequenceshard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_sysview_processor.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_testshard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_tx_proxy.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters_mediator.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/counters.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/database_basic_sausage_metainfo.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/drivemodel.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/export.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/flat_tx_scheme.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/flat_scheme_op.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/health.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/hive.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/http_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/import.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/index_builder.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/issue_id.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/kesus.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/kqp_query_settings.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/kqp_physical.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/kqp_stats.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/kqp.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/local.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/long_tx_service.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/metrics.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/minikql_engine.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/msgbus.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/msgbus_health.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/msgbus_kv.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/msgbus_pq.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/netclassifier.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/node_broker.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/node_limits.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/profiler.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/query_stats.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/replication.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/resource_broker.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/scheme_log.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/scheme_type_metadata.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/scheme_type_operation.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/serverless_proxy_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/services.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/shared_cache.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/sqs.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/follower_group.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/ssa.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/statestorage.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/stream.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/subdomains.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/table_stats.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tablet.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tablet_counters_aggregator.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tablet_counters.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tablet_database.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tablet_pipe.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tablet_tx.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tenant_pool.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tenant_slot_broker.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/test_shard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tracing.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tablet_tracing_signals.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/node_whiteboard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tx.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tx_columnshard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tx_datashard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tx_mediator_timecast.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tx_proxy.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tx_scheme.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/tx_sequenceshard.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/pdiskfit.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/pqconfig.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/auth.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/key.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/grpc.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/grpc_pq_old.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/grpc_status_proxy.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/ydb_result_set_old.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/ydb_table_impl.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/scheme_board.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/scheme_board_mon.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/protos/sys_view.pb.cc -) generate_enum_serilization(ydb-core-protos ${CMAKE_BINARY_DIR}/ydb/core/protos/blobstorage_pdisk_config.pb.h INCLUDE_HEADERS diff --git a/ydb/core/tablet_flat/CMakeLists.txt b/ydb/core/tablet_flat/CMakeLists.txt index b5b4b43084..55728be780 100644 --- a/ydb/core/tablet_flat/CMakeLists.txt +++ b/ydb/core/tablet_flat/CMakeLists.txt @@ -82,7 +82,6 @@ target_sources(ydb-core-tablet_flat PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/tablet_flat/shared_sausagecache.cpp ${CMAKE_SOURCE_DIR}/ydb/core/tablet_flat/tablet_flat_executor.cpp ${CMAKE_SOURCE_DIR}/ydb/core/tablet_flat/tablet_flat_executed.cpp - ${CMAKE_BINARY_DIR}/ydb/core/tablet_flat/flat_executor.pb.cc ) generate_enum_serilization(ydb-core-tablet_flat ${CMAKE_SOURCE_DIR}/ydb/core/tablet_flat/flat_comp_gen.h diff --git a/ydb/core/tablet_flat/protos/CMakeLists.txt b/ydb/core/tablet_flat/protos/CMakeLists.txt index 652bdb64f4..786a97477b 100644 --- a/ydb/core/tablet_flat/protos/CMakeLists.txt +++ b/ydb/core/tablet_flat/protos/CMakeLists.txt @@ -18,10 +18,6 @@ target_proto_messages(core-tablet_flat-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/tablet_flat/protos/flat_table_part.proto ${CMAKE_SOURCE_DIR}/ydb/core/tablet_flat/protos/flat_table_shard.proto ) -target_sources(core-tablet_flat-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/tablet_flat/protos/flat_table_part.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/tablet_flat/protos/flat_table_shard.pb.cc -) target_proto_addincls(core-tablet_flat-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/viewer/protos/CMakeLists.txt b/ydb/core/viewer/protos/CMakeLists.txt index 808fd0c70e..9331c1366e 100644 --- a/ydb/core/viewer/protos/CMakeLists.txt +++ b/ydb/core/viewer/protos/CMakeLists.txt @@ -17,9 +17,6 @@ target_link_libraries(core-viewer-protos PUBLIC target_proto_messages(core-viewer-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/viewer/protos/viewer.proto ) -target_sources(core-viewer-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/viewer/protos/viewer.pb.cc -) target_proto_addincls(core-viewer-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/ymq/proto/CMakeLists.txt b/ydb/core/ymq/proto/CMakeLists.txt index d71d654c57..48a8f8b907 100644 --- a/ydb/core/ymq/proto/CMakeLists.txt +++ b/ydb/core/ymq/proto/CMakeLists.txt @@ -17,9 +17,6 @@ target_link_libraries(core-ymq-proto PUBLIC target_proto_messages(core-ymq-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/ymq/proto/records.proto ) -target_sources(core-ymq-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/ymq/proto/records.pb.cc -) target_proto_addincls(core-ymq-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.txt b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.txt index 5b7f1c4328..1fe9379115 100644 --- a/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.txt +++ b/ydb/core/yq/libs/checkpoint_storage/proto/CMakeLists.txt @@ -17,9 +17,6 @@ target_link_libraries(libs-checkpoint_storage-proto PUBLIC target_proto_messages(libs-checkpoint_storage-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/yq/libs/checkpoint_storage/proto/graph_description.proto ) -target_sources(libs-checkpoint_storage-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/checkpoint_storage/proto/graph_description.pb.cc -) target_proto_addincls(libs-checkpoint_storage-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/yq/libs/config/protos/CMakeLists.txt b/ydb/core/yq/libs/config/protos/CMakeLists.txt index 50a796422b..618e54968a 100644 --- a/ydb/core/yq/libs/config/protos/CMakeLists.txt +++ b/ydb/core/yq/libs/config/protos/CMakeLists.txt @@ -37,27 +37,6 @@ target_proto_messages(libs-config-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/yq/libs/config/protos/token_accessor.proto ${CMAKE_SOURCE_DIR}/ydb/core/yq/libs/config/protos/yq_config.proto ) -target_sources(libs-config-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/audit.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/checkpoint_coordinator.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/common.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/control_plane_proxy.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/control_plane_storage.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/db_pool.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/gateways.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/issue_id.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/nodes_manager.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/pending_fetcher.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/pinger.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/private_api.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/private_proxy.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/read_actors_factory.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/resource_manager.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/storage.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/test_connection.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/token_accessor.pb.cc - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/config/protos/yq_config.pb.cc -) target_proto_addincls(libs-config-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.txt b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.txt index a27d977376..c9569345d5 100644 --- a/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.txt +++ b/ydb/core/yq/libs/control_plane_storage/proto/CMakeLists.txt @@ -20,9 +20,6 @@ target_link_libraries(libs-control_plane_storage-proto PUBLIC target_proto_messages(libs-control_plane_storage-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/yq/libs/control_plane_storage/proto/yq_internal.proto ) -target_sources(libs-control_plane_storage-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/control_plane_storage/proto/yq_internal.pb.cc -) target_proto_addincls(libs-control_plane_storage-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/yq/libs/graph_params/proto/CMakeLists.txt b/ydb/core/yq/libs/graph_params/proto/CMakeLists.txt index fe1523741a..93a709bd86 100644 --- a/ydb/core/yq/libs/graph_params/proto/CMakeLists.txt +++ b/ydb/core/yq/libs/graph_params/proto/CMakeLists.txt @@ -18,9 +18,6 @@ target_link_libraries(libs-graph_params-proto PUBLIC target_proto_messages(libs-graph_params-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/yq/libs/graph_params/proto/graph_params.proto ) -target_sources(libs-graph_params-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/graph_params/proto/graph_params.pb.cc -) target_proto_addincls(libs-graph_params-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/core/yq/libs/protos/CMakeLists.txt b/ydb/core/yq/libs/protos/CMakeLists.txt index 034ae98e25..8761fc37f0 100644 --- a/ydb/core/yq/libs/protos/CMakeLists.txt +++ b/ydb/core/yq/libs/protos/CMakeLists.txt @@ -18,9 +18,6 @@ target_link_libraries(yq-libs-protos PUBLIC target_proto_messages(yq-libs-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/core/yq/libs/protos/yq_private.proto ) -target_sources(yq-libs-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/core/yq/libs/protos/yq_private.pb.cc -) target_proto_addincls(yq-libs-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/aclib/protos/CMakeLists.txt b/ydb/library/aclib/protos/CMakeLists.txt index f706ebb8c6..f8984951e0 100644 --- a/ydb/library/aclib/protos/CMakeLists.txt +++ b/ydb/library/aclib/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(library-aclib-protos PUBLIC target_proto_messages(library-aclib-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/aclib/protos/aclib.proto ) -target_sources(library-aclib-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/aclib/protos/aclib.pb.cc -) target_proto_addincls(library-aclib-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/folder_service/proto/CMakeLists.txt b/ydb/library/folder_service/proto/CMakeLists.txt index f28bce4a3a..e630dcf49f 100644 --- a/ydb/library/folder_service/proto/CMakeLists.txt +++ b/ydb/library/folder_service/proto/CMakeLists.txt @@ -17,10 +17,6 @@ target_proto_messages(library-folder_service-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/folder_service/proto/config.proto ${CMAKE_SOURCE_DIR}/ydb/library/folder_service/proto/folder_service.proto ) -target_sources(library-folder_service-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/folder_service/proto/config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/folder_service/proto/folder_service.pb.cc -) target_proto_addincls(library-folder_service-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/login/protos/CMakeLists.txt b/ydb/library/login/protos/CMakeLists.txt index 2b171b8738..d6f06cdfc1 100644 --- a/ydb/library/login/protos/CMakeLists.txt +++ b/ydb/library/login/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(library-login-protos PUBLIC target_proto_messages(library-login-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/login/protos/login.proto ) -target_sources(library-login-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/login/protos/login.pb.cc -) target_proto_addincls(library-login-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/mkql_proto/protos/CMakeLists.txt b/ydb/library/mkql_proto/protos/CMakeLists.txt index 4da07be375..36fffda986 100644 --- a/ydb/library/mkql_proto/protos/CMakeLists.txt +++ b/ydb/library/mkql_proto/protos/CMakeLists.txt @@ -20,9 +20,6 @@ target_link_libraries(library-mkql_proto-protos PUBLIC target_proto_messages(library-mkql_proto-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/mkql_proto/protos/minikql.proto ) -target_sources(library-mkql_proto-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/mkql_proto/protos/minikql.pb.cc -) target_proto_addincls(library-mkql_proto-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/pdisk_io/protos/CMakeLists.txt b/ydb/library/pdisk_io/protos/CMakeLists.txt index 29b3ed7d27..17810b7351 100644 --- a/ydb/library/pdisk_io/protos/CMakeLists.txt +++ b/ydb/library/pdisk_io/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(library-pdisk_io-protos PUBLIC target_proto_messages(library-pdisk_io-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/pdisk_io/protos/sector_map.proto ) -target_sources(library-pdisk_io-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/pdisk_io/protos/sector_map.pb.cc -) target_proto_addincls(library-pdisk_io-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/protobuf_printer/ut/CMakeLists.darwin.txt b/ydb/library/protobuf_printer/ut/CMakeLists.darwin.txt index 6fcf160c50..24261ca024 100644 --- a/ydb/library/protobuf_printer/ut/CMakeLists.darwin.txt +++ b/ydb/library/protobuf_printer/ut/CMakeLists.darwin.txt @@ -32,7 +32,6 @@ target_proto_messages(ydb-library-protobuf_printer-ut PRIVATE ) target_sources(ydb-library-protobuf_printer-ut PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/protobuf_printer/protobuf_printer_ut.cpp - ${CMAKE_BINARY_DIR}/ydb/library/protobuf_printer/ut/test_proto.pb.cc ) add_test( NAME diff --git a/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt b/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt index 39da07c55a..8a0e172d2e 100644 --- a/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt +++ b/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt @@ -35,7 +35,6 @@ target_proto_messages(ydb-library-protobuf_printer-ut PRIVATE ) target_sources(ydb-library-protobuf_printer-ut PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/protobuf_printer/protobuf_printer_ut.cpp - ${CMAKE_BINARY_DIR}/ydb/library/protobuf_printer/ut/test_proto.pb.cc ) add_test( NAME diff --git a/ydb/library/schlab/protos/CMakeLists.txt b/ydb/library/schlab/protos/CMakeLists.txt index f24d8fc3aa..0009072148 100644 --- a/ydb/library/schlab/protos/CMakeLists.txt +++ b/ydb/library/schlab/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(library-schlab-protos PUBLIC target_proto_messages(library-schlab-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/schlab/protos/schlab.proto ) -target_sources(library-schlab-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/schlab/protos/schlab.pb.cc -) target_proto_addincls(library-schlab-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.txt b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.txt index 5dadf43721..2b0e837a30 100644 --- a/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.txt +++ b/ydb/library/yql/core/file_storage/http_download/proto/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(file_storage-http_download-proto PUBLIC target_proto_messages(file_storage-http_download-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/core/file_storage/http_download/proto/http_download.proto ) -target_sources(file_storage-http_download-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/core/file_storage/http_download/proto/http_download.pb.cc -) target_proto_addincls(file_storage-http_download-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/core/file_storage/proto/CMakeLists.txt b/ydb/library/yql/core/file_storage/proto/CMakeLists.txt index c4f12df0cd..ed35c53cd4 100644 --- a/ydb/library/yql/core/file_storage/proto/CMakeLists.txt +++ b/ydb/library/yql/core/file_storage/proto/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(core-file_storage-proto PUBLIC target_proto_messages(core-file_storage-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/core/file_storage/proto/file_storage.proto ) -target_sources(core-file_storage-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/core/file_storage/proto/file_storage.pb.cc -) target_proto_addincls(core-file_storage-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/core/issue/protos/CMakeLists.txt b/ydb/library/yql/core/issue/protos/CMakeLists.txt index 3ddff0ce0e..a305123e3c 100644 --- a/ydb/library/yql/core/issue/protos/CMakeLists.txt +++ b/ydb/library/yql/core/issue/protos/CMakeLists.txt @@ -17,9 +17,6 @@ target_link_libraries(core-issue-protos PUBLIC target_proto_messages(core-issue-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/core/issue/protos/issue_id.proto ) -target_sources(core-issue-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/core/issue/protos/issue_id.pb.cc -) target_proto_addincls(core-issue-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/dq/actors/protos/CMakeLists.txt b/ydb/library/yql/dq/actors/protos/CMakeLists.txt index af03cbae97..9ab3ca46af 100644 --- a/ydb/library/yql/dq/actors/protos/CMakeLists.txt +++ b/ydb/library/yql/dq/actors/protos/CMakeLists.txt @@ -24,11 +24,6 @@ target_proto_messages(dq-actors-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/dq/actors/protos/dq_stats.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/dq/actors/protos/dq_status_codes.proto ) -target_sources(dq-actors-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/dq/actors/protos/dq_events.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/dq/actors/protos/dq_stats.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/dq/actors/protos/dq_status_codes.pb.cc -) target_proto_addincls(dq-actors-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/dq/proto/CMakeLists.txt b/ydb/library/yql/dq/proto/CMakeLists.txt index 3e9ec1f96d..25a364ec6e 100644 --- a/ydb/library/yql/dq/proto/CMakeLists.txt +++ b/ydb/library/yql/dq/proto/CMakeLists.txt @@ -20,12 +20,6 @@ target_proto_messages(yql-dq-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/dq/proto/dq_tasks.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/dq/proto/dq_transport.proto ) -target_sources(yql-dq-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/dq/proto/dq_checkpoint.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/dq/proto/dq_state_load_plan.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/dq/proto/dq_tasks.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/dq/proto/dq_transport.pb.cc -) target_proto_addincls(yql-dq-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.txt index d8483e5553..16a1f9e2dd 100644 --- a/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/gen/jsonpath/CMakeLists.txt @@ -19,7 +19,6 @@ target_proto_messages(proto_ast-gen-jsonpath PRIVATE target_sources(proto_ast-gen-jsonpath PRIVATE ${CMAKE_BINARY_DIR}/ydb/library/yql/parser/proto_ast/gen/jsonpath/JsonPathParser.cpp ${CMAKE_BINARY_DIR}/ydb/library/yql/parser/proto_ast/gen/jsonpath/JsonPathLexer.cpp - ${CMAKE_BINARY_DIR}/ydb/library/yql/parser/proto_ast/gen/jsonpath/JsonPathParser.pb.cc ) run_antlr( OUTPUT diff --git a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.txt index 9901a1b6e7..3c1afe0dac 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v0/CMakeLists.txt @@ -19,7 +19,6 @@ target_proto_messages(proto_ast-gen-v0 PRIVATE target_sources(proto_ast-gen-v0 PRIVATE ${CMAKE_BINARY_DIR}/ydb/library/yql/parser/proto_ast/gen/v0/SQLParser.cpp ${CMAKE_BINARY_DIR}/ydb/library/yql/parser/proto_ast/gen/v0/SQLLexer.cpp - ${CMAKE_BINARY_DIR}/ydb/library/yql/parser/proto_ast/gen/v0/SQLParser.pb.cc ) run_antlr( OUTPUT diff --git a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.txt b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.txt index 1b7041b781..db5fcef1ba 100644 --- a/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.txt +++ b/ydb/library/yql/parser/proto_ast/gen/v1_proto/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(proto_ast-gen-v1_proto PUBLIC target_proto_messages(proto_ast-gen-v1_proto PRIVATE ${CMAKE_BINARY_DIR}/ydb/library/yql/parser/proto_ast/gen/v1_proto/SQLv1Parser.proto ) -target_sources(proto_ast-gen-v1_proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/parser/proto_ast/gen/v1_proto/SQLv1Parser.pb.cc -) run_antlr( OUTPUT ${CMAKE_BINARY_DIR}/ydb/library/yql/parser/proto_ast/gen/v1_proto/SQLv1Parser.proto diff --git a/ydb/library/yql/protos/CMakeLists.txt b/ydb/library/yql/protos/CMakeLists.txt index e111ebf252..43af20a972 100644 --- a/ydb/library/yql/protos/CMakeLists.txt +++ b/ydb/library/yql/protos/CMakeLists.txt @@ -18,11 +18,6 @@ target_proto_messages(library-yql-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/protos/yql_mount.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/protos/clickhouse.proto ) -target_sources(library-yql-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/protos/common.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/protos/yql_mount.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/protos/clickhouse.pb.cc -) target_proto_addincls(library-yql-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.txt b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.txt index d180108dca..02ffa25e1d 100644 --- a/ydb/library/yql/providers/clickhouse/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/clickhouse/proto/CMakeLists.txt @@ -17,10 +17,6 @@ target_proto_messages(providers-clickhouse-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/clickhouse/proto/source.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/clickhouse/proto/range.proto ) -target_sources(providers-clickhouse-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/clickhouse/proto/source.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/clickhouse/proto/range.pb.cc -) target_proto_addincls(providers-clickhouse-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.txt b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.txt index 7b1069652f..174ec00009 100644 --- a/ydb/library/yql/providers/common/metrics/protos/CMakeLists.txt +++ b/ydb/library/yql/providers/common/metrics/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(common-metrics-protos PUBLIC target_proto_messages(common-metrics-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/common/metrics/protos/metrics_registry.proto ) -target_sources(common-metrics-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/common/metrics/protos/metrics_registry.pb.cc -) target_proto_addincls(common-metrics-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/common/proto/CMakeLists.txt b/ydb/library/yql/providers/common/proto/CMakeLists.txt index d33053d0c1..b3a720cc18 100644 --- a/ydb/library/yql/providers/common/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/common/proto/CMakeLists.txt @@ -18,10 +18,6 @@ target_proto_messages(providers-common-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/common/proto/gateways_config.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/common/proto/udf_resolver.proto ) -target_sources(providers-common-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/common/proto/gateways_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/common/proto/udf_resolver.pb.cc -) target_proto_addincls(providers-common-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.txt b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.txt index 05fa132582..418665f535 100644 --- a/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.txt +++ b/ydb/library/yql/providers/common/token_accessor/grpc/CMakeLists.txt @@ -20,9 +20,6 @@ target_link_libraries(common-token_accessor-grpc PUBLIC target_proto_messages(common-token_accessor-grpc PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/common/token_accessor/grpc/token_accessor_pb.proto ) -target_sources(common-token_accessor-grpc PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/common/token_accessor/grpc/token_accessor_pb.pb.cc -) target_proto_addincls(common-token_accessor-grpc ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.txt b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.txt index d02523d53e..33a2e9bfa2 100644 --- a/ydb/library/yql/providers/dq/api/grpc/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/api/grpc/CMakeLists.txt @@ -21,9 +21,6 @@ target_link_libraries(dq-api-grpc PUBLIC target_proto_messages(dq-api-grpc PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/dq/api/grpc/api.proto ) -target_sources(dq-api-grpc PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/dq/api/grpc/api.pb.cc -) target_proto_addincls(dq-api-grpc ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/dq/api/protos/CMakeLists.txt b/ydb/library/yql/providers/dq/api/protos/CMakeLists.txt index 94d1d0ed29..4f7bdfec31 100644 --- a/ydb/library/yql/providers/dq/api/protos/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/api/protos/CMakeLists.txt @@ -23,11 +23,6 @@ target_proto_messages(dq-api-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/dq/api/protos/dqs.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/dq/api/protos/task_command_executor.proto ) -target_sources(dq-api-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/dq/api/protos/service.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/dq/api/protos/dqs.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/dq/api/protos/task_command_executor.pb.cc -) target_proto_addincls(dq-api-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/dq/config/CMakeLists.txt b/ydb/library/yql/providers/dq/config/CMakeLists.txt index 43e87b3d44..ddb371cbf2 100644 --- a/ydb/library/yql/providers/dq/config/CMakeLists.txt +++ b/ydb/library/yql/providers/dq/config/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(providers-dq-config PUBLIC target_proto_messages(providers-dq-config PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/dq/config/config.proto ) -target_sources(providers-dq-config PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/dq/config/config.pb.cc -) target_proto_addincls(providers-dq-config ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/pq/proto/CMakeLists.txt b/ydb/library/yql/providers/pq/proto/CMakeLists.txt index b9b8632dfd..cdc504ff8f 100644 --- a/ydb/library/yql/providers/pq/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/pq/proto/CMakeLists.txt @@ -18,11 +18,6 @@ target_proto_messages(providers-pq-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/pq/proto/dq_io_state.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/pq/proto/dq_task_params.proto ) -target_sources(providers-pq-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/pq/proto/dq_io.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/pq/proto/dq_io_state.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/pq/proto/dq_task_params.pb.cc -) target_proto_addincls(providers-pq-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/s3/proto/CMakeLists.txt b/ydb/library/yql/providers/s3/proto/CMakeLists.txt index 46c09ac566..6c6b6ecd03 100644 --- a/ydb/library/yql/providers/s3/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/s3/proto/CMakeLists.txt @@ -18,11 +18,6 @@ target_proto_messages(providers-s3-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/s3/proto/retry_config.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/s3/proto/source.proto ) -target_sources(providers-s3-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/s3/proto/range.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/s3/proto/retry_config.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/s3/proto/source.pb.cc -) target_proto_addincls(providers-s3-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/solomon/proto/CMakeLists.txt b/ydb/library/yql/providers/solomon/proto/CMakeLists.txt index 895a3e5bb4..e7c7f725a7 100644 --- a/ydb/library/yql/providers/solomon/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/solomon/proto/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(providers-solomon-proto PUBLIC target_proto_messages(providers-solomon-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/solomon/proto/dq_solomon_shard.proto ) -target_sources(providers-solomon-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/solomon/proto/dq_solomon_shard.pb.cc -) target_proto_addincls(providers-solomon-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/providers/ydb/proto/CMakeLists.txt b/ydb/library/yql/providers/ydb/proto/CMakeLists.txt index 54f7767200..d7828d84f1 100644 --- a/ydb/library/yql/providers/ydb/proto/CMakeLists.txt +++ b/ydb/library/yql/providers/ydb/proto/CMakeLists.txt @@ -17,10 +17,6 @@ target_proto_messages(providers-ydb-proto PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/ydb/proto/range.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/providers/ydb/proto/source.proto ) -target_sources(providers-ydb-proto PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/ydb/proto/range.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/providers/ydb/proto/source.pb.cc -) target_proto_addincls(providers-ydb-proto ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/public/issue/protos/CMakeLists.txt b/ydb/library/yql/public/issue/protos/CMakeLists.txt index 83d95f6637..80ab39da1a 100644 --- a/ydb/library/yql/public/issue/protos/CMakeLists.txt +++ b/ydb/library/yql/public/issue/protos/CMakeLists.txt @@ -17,10 +17,6 @@ target_proto_messages(public-issue-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/public/issue/protos/issue_message.proto ${CMAKE_SOURCE_DIR}/ydb/library/yql/public/issue/protos/issue_severity.proto ) -target_sources(public-issue-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/public/issue/protos/issue_message.pb.cc - ${CMAKE_BINARY_DIR}/ydb/library/yql/public/issue/protos/issue_severity.pb.cc -) target_proto_addincls(public-issue-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/public/types/CMakeLists.txt b/ydb/library/yql/public/types/CMakeLists.txt index 396708dc7c..8b05d2ed0a 100644 --- a/ydb/library/yql/public/types/CMakeLists.txt +++ b/ydb/library/yql/public/types/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(yql-public-types PUBLIC target_proto_messages(yql-public-types PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/public/types/yql_types.proto ) -target_sources(yql-public-types PRIVATE - ${CMAKE_BINARY_DIR}/ydb/library/yql/public/types/yql_types.pb.cc -) target_proto_addincls(yql-public-types ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/library/yql/udfs/common/stat/static/CMakeLists.txt b/ydb/library/yql/udfs/common/stat/static/CMakeLists.txt index 88df581815..633ae92251 100644 --- a/ydb/library/yql/udfs/common/stat/static/CMakeLists.txt +++ b/ydb/library/yql/udfs/common/stat/static/CMakeLists.txt @@ -26,7 +26,6 @@ target_proto_messages(common-stat-static PRIVATE target_sources(common-stat-static PRIVATE ${CMAKE_SOURCE_DIR}/ydb/library/yql/udfs/common/stat/static/static_udf.cpp ${CMAKE_SOURCE_DIR}/ydb/library/yql/udfs/common/stat/static/tdigest.cpp - ${CMAKE_BINARY_DIR}/ydb/library/yql/udfs/common/stat/static/tdigest.pb.cc ) target_proto_addincls(common-stat-static ./ diff --git a/ydb/public/api/grpc/CMakeLists.txt b/ydb/public/api/grpc/CMakeLists.txt index 091a08a009..f3f8fd2ca0 100644 --- a/ydb/public/api/grpc/CMakeLists.txt +++ b/ydb/public/api/grpc/CMakeLists.txt @@ -33,21 +33,6 @@ target_proto_messages(api-grpc PRIVATE ${CMAKE_SOURCE_DIR}/ydb/public/api/grpc/ydb_table_v1.proto ${CMAKE_SOURCE_DIR}/ydb/public/api/grpc/yq_v1.proto ) -target_sources(api-grpc PRIVATE - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_auth_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_coordination_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_discovery_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_export_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_import_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_monitoring_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_operation_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_cms_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_rate_limiter_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_scheme_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_scripting_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/ydb_table_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/yq_v1.pb.cc -) target_proto_addincls(api-grpc ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/public/api/grpc/draft/CMakeLists.txt b/ydb/public/api/grpc/draft/CMakeLists.txt index c13563b0f7..8cb8f24ea2 100644 --- a/ydb/public/api/grpc/draft/CMakeLists.txt +++ b/ydb/public/api/grpc/draft/CMakeLists.txt @@ -30,17 +30,6 @@ target_proto_messages(api-grpc-draft PRIVATE ${CMAKE_SOURCE_DIR}/ydb/public/api/grpc/draft/ydb_logstore_v1.proto ${CMAKE_SOURCE_DIR}/ydb/public/api/grpc/draft/yql_db_v1.proto ) -target_sources(api-grpc-draft PRIVATE - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/draft/dummy.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/draft/ydb_clickhouse_internal_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/draft/ydb_persqueue_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/draft/ydb_datastreams_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/draft/ydb_experimental_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/draft/ydb_s3_internal_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/draft/ydb_long_tx_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/draft/ydb_logstore_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/grpc/draft/yql_db_v1.pb.cc -) target_proto_addincls(api-grpc-draft ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/public/api/protos/CMakeLists.txt b/ydb/public/api/protos/CMakeLists.txt index 8fd0553a14..a573bf200a 100644 --- a/ydb/public/api/protos/CMakeLists.txt +++ b/ydb/public/api/protos/CMakeLists.txt @@ -47,38 +47,6 @@ target_proto_messages(api-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/public/api/protos/ydb_s3_internal.proto ${CMAKE_SOURCE_DIR}/ydb/public/api/protos/yq.proto ) -target_sources(api-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/draft/datastreams.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/draft/persqueue_common.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/draft/persqueue_error_codes.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/draft/ydb_long_tx.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/draft/ydb_logstore.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/persqueue_error_codes_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_auth.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_persqueue_v1.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_persqueue_cluster_discovery.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_clickhouse_internal.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_cms.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_common.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_coordination.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_discovery.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_experimental.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_export.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_formats.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_import.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_issue_message.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_monitoring.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_operation.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_query_stats.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_rate_limiter.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_scheme.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_scripting.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_status_codes.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_table.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_value.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/ydb_s3_internal.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/yq.pb.cc -) generate_enum_serilization(api-protos ${CMAKE_BINARY_DIR}/ydb/public/api/protos/draft/persqueue_common.pb.h INCLUDE_HEADERS diff --git a/ydb/public/api/protos/annotations/CMakeLists.txt b/ydb/public/api/protos/annotations/CMakeLists.txt index 8bc704d218..db0117fa8c 100644 --- a/ydb/public/api/protos/annotations/CMakeLists.txt +++ b/ydb/public/api/protos/annotations/CMakeLists.txt @@ -17,10 +17,6 @@ target_proto_messages(api-protos-annotations PRIVATE ${CMAKE_SOURCE_DIR}/ydb/public/api/protos/annotations/sensitive.proto ${CMAKE_SOURCE_DIR}/ydb/public/api/protos/annotations/validation.proto ) -target_sources(api-protos-annotations PRIVATE - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/annotations/sensitive.pb.cc - ${CMAKE_BINARY_DIR}/ydb/public/api/protos/annotations/validation.pb.cc -) target_proto_addincls(api-protos-annotations ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/public/lib/operation_id/protos/CMakeLists.txt b/ydb/public/lib/operation_id/protos/CMakeLists.txt index ad7fb91e2d..a497bff482 100644 --- a/ydb/public/lib/operation_id/protos/CMakeLists.txt +++ b/ydb/public/lib/operation_id/protos/CMakeLists.txt @@ -16,9 +16,6 @@ target_link_libraries(lib-operation_id-protos PUBLIC target_proto_messages(lib-operation_id-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/public/lib/operation_id/protos/operation_id.proto ) -target_sources(lib-operation_id-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/public/lib/operation_id/protos/operation_id.pb.cc -) target_proto_addincls(lib-operation_id-protos ./ ${CMAKE_SOURCE_DIR}/ diff --git a/ydb/public/lib/validation/ut/protos/CMakeLists.txt b/ydb/public/lib/validation/ut/protos/CMakeLists.txt index 334cebacc3..b2d55367d3 100644 --- a/ydb/public/lib/validation/ut/protos/CMakeLists.txt +++ b/ydb/public/lib/validation/ut/protos/CMakeLists.txt @@ -17,9 +17,6 @@ target_link_libraries(validation-ut-protos PUBLIC target_proto_messages(validation-ut-protos PRIVATE ${CMAKE_SOURCE_DIR}/ydb/public/lib/validation/ut/protos/validation_test.proto ) -target_sources(validation-ut-protos PRIVATE - ${CMAKE_BINARY_DIR}/ydb/public/lib/validation/ut/protos/validation_test.pb.cc -) target_proto_addincls(validation-ut-protos ./ ${CMAKE_SOURCE_DIR}/ |