diff options
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/actors/protos/CMakeLists.txt | 6 | ||||
-rw-r--r-- | library/cpp/histogram/adaptive/protos/CMakeLists.txt | 3 | ||||
-rw-r--r-- | library/cpp/lwtrace/protos/CMakeLists.txt | 3 | ||||
-rw-r--r-- | library/cpp/messagebus/monitoring/CMakeLists.txt | 3 | ||||
-rw-r--r-- | library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt | 3 | ||||
-rw-r--r-- | library/cpp/protobuf/util/proto/CMakeLists.txt | 3 | ||||
-rw-r--r-- | library/cpp/retry/protos/CMakeLists.txt | 3 |
7 files changed, 24 insertions, 0 deletions
diff --git a/library/cpp/actors/protos/CMakeLists.txt b/library/cpp/actors/protos/CMakeLists.txt index f2edc6dee1..456b1a40e3 100644 --- a/library/cpp/actors/protos/CMakeLists.txt +++ b/library/cpp/actors/protos/CMakeLists.txt @@ -19,3 +19,9 @@ 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 +) diff --git a/library/cpp/histogram/adaptive/protos/CMakeLists.txt b/library/cpp/histogram/adaptive/protos/CMakeLists.txt index 51e4998847..1f3b57f44e 100644 --- a/library/cpp/histogram/adaptive/protos/CMakeLists.txt +++ b/library/cpp/histogram/adaptive/protos/CMakeLists.txt @@ -16,3 +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 +) diff --git a/library/cpp/lwtrace/protos/CMakeLists.txt b/library/cpp/lwtrace/protos/CMakeLists.txt index 8d500c7d3d..177651b47b 100644 --- a/library/cpp/lwtrace/protos/CMakeLists.txt +++ b/library/cpp/lwtrace/protos/CMakeLists.txt @@ -16,3 +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 +) diff --git a/library/cpp/messagebus/monitoring/CMakeLists.txt b/library/cpp/messagebus/monitoring/CMakeLists.txt index 8255f6cad6..931249f18f 100644 --- a/library/cpp/messagebus/monitoring/CMakeLists.txt +++ b/library/cpp/messagebus/monitoring/CMakeLists.txt @@ -17,3 +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 +) diff --git a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt index b2bc2cab92..29c2893565 100644 --- a/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt +++ b/library/cpp/monlib/encode/legacy_protobuf/protos/CMakeLists.txt @@ -16,3 +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 +) diff --git a/library/cpp/protobuf/util/proto/CMakeLists.txt b/library/cpp/protobuf/util/proto/CMakeLists.txt index fe90216e53..cc257aeeb7 100644 --- a/library/cpp/protobuf/util/proto/CMakeLists.txt +++ b/library/cpp/protobuf/util/proto/CMakeLists.txt @@ -16,3 +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 +) diff --git a/library/cpp/retry/protos/CMakeLists.txt b/library/cpp/retry/protos/CMakeLists.txt index 920174c054..d9c38efdd3 100644 --- a/library/cpp/retry/protos/CMakeLists.txt +++ b/library/cpp/retry/protos/CMakeLists.txt @@ -16,3 +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 +) |