aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/histogram/adaptive
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-02-07 17:37:14 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-02-07 17:37:14 +0300
commit94299c40d78c487307d3b744ecadf539dc13bb1a (patch)
treebb80680b6df85a6d825be7aadde56e3be92232fd /library/cpp/histogram/adaptive
parent8118c921f2a3bd04c89bd2b89cc01bcc1bae4e93 (diff)
downloadydb-94299c40d78c487307d3b744ecadf539dc13bb1a.tar.gz
Intermediate changes
Diffstat (limited to 'library/cpp/histogram/adaptive')
-rw-r--r--library/cpp/histogram/adaptive/CMakeLists.darwin.txt8
-rw-r--r--library/cpp/histogram/adaptive/CMakeLists.linux-aarch64.txt8
-rw-r--r--library/cpp/histogram/adaptive/CMakeLists.linux.txt8
-rw-r--r--library/cpp/histogram/adaptive/protos/CMakeLists.darwin.txt18
-rw-r--r--library/cpp/histogram/adaptive/protos/CMakeLists.linux-aarch64.txt18
-rw-r--r--library/cpp/histogram/adaptive/protos/CMakeLists.linux.txt18
6 files changed, 39 insertions, 39 deletions
diff --git a/library/cpp/histogram/adaptive/CMakeLists.darwin.txt b/library/cpp/histogram/adaptive/CMakeLists.darwin.txt
index 82fb24cb78..1c5c6f2745 100644
--- a/library/cpp/histogram/adaptive/CMakeLists.darwin.txt
+++ b/library/cpp/histogram/adaptive/CMakeLists.darwin.txt
@@ -16,8 +16,8 @@ target_link_libraries(cpp-histogram-adaptive PUBLIC
histogram-adaptive-protos
)
target_sources(cpp-histogram-adaptive PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/common.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/adaptive_histogram.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/block_histogram.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/common.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/adaptive_histogram.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/block_histogram.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp
)
diff --git a/library/cpp/histogram/adaptive/CMakeLists.linux-aarch64.txt b/library/cpp/histogram/adaptive/CMakeLists.linux-aarch64.txt
index 089ec72973..917221ecb4 100644
--- a/library/cpp/histogram/adaptive/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/histogram/adaptive/CMakeLists.linux-aarch64.txt
@@ -17,8 +17,8 @@ target_link_libraries(cpp-histogram-adaptive PUBLIC
histogram-adaptive-protos
)
target_sources(cpp-histogram-adaptive PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/common.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/adaptive_histogram.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/block_histogram.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/common.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/adaptive_histogram.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/block_histogram.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp
)
diff --git a/library/cpp/histogram/adaptive/CMakeLists.linux.txt b/library/cpp/histogram/adaptive/CMakeLists.linux.txt
index 089ec72973..917221ecb4 100644
--- a/library/cpp/histogram/adaptive/CMakeLists.linux.txt
+++ b/library/cpp/histogram/adaptive/CMakeLists.linux.txt
@@ -17,8 +17,8 @@ target_link_libraries(cpp-histogram-adaptive PUBLIC
histogram-adaptive-protos
)
target_sources(cpp-histogram-adaptive PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/common.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/adaptive_histogram.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/block_histogram.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/common.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/adaptive_histogram.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/block_histogram.cpp
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp
)
diff --git a/library/cpp/histogram/adaptive/protos/CMakeLists.darwin.txt b/library/cpp/histogram/adaptive/protos/CMakeLists.darwin.txt
index c1c5db3e56..8facb92cff 100644
--- a/library/cpp/histogram/adaptive/protos/CMakeLists.darwin.txt
+++ b/library/cpp/histogram/adaptive/protos/CMakeLists.darwin.txt
@@ -14,18 +14,18 @@ target_link_libraries(histogram-adaptive-protos PUBLIC
contrib-libs-protobuf
)
target_proto_messages(histogram-adaptive-protos PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/protos/histo.proto
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/protos/histo.proto
)
target_proto_addincls(histogram-adaptive-protos
./
- ${CMAKE_SOURCE_DIR}/
- ${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}
- ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
- ${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
+ \${CMAKE_SOURCE_DIR}/
+ \${CMAKE_BINARY_DIR}
+ \${CMAKE_SOURCE_DIR}
+ \${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
+ \${CMAKE_BINARY_DIR}
+ \${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
)
target_proto_outs(histogram-adaptive-protos
- --cpp_out=${CMAKE_BINARY_DIR}/
- --cpp_styleguide_out=${CMAKE_BINARY_DIR}/
+ --cpp_out=\${CMAKE_BINARY_DIR}/
+ --cpp_styleguide_out=\${CMAKE_BINARY_DIR}/
)
diff --git a/library/cpp/histogram/adaptive/protos/CMakeLists.linux-aarch64.txt b/library/cpp/histogram/adaptive/protos/CMakeLists.linux-aarch64.txt
index 51025bd7f5..bec512c3ae 100644
--- a/library/cpp/histogram/adaptive/protos/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/histogram/adaptive/protos/CMakeLists.linux-aarch64.txt
@@ -15,18 +15,18 @@ target_link_libraries(histogram-adaptive-protos PUBLIC
contrib-libs-protobuf
)
target_proto_messages(histogram-adaptive-protos PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/protos/histo.proto
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/protos/histo.proto
)
target_proto_addincls(histogram-adaptive-protos
./
- ${CMAKE_SOURCE_DIR}/
- ${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}
- ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
- ${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
+ \${CMAKE_SOURCE_DIR}/
+ \${CMAKE_BINARY_DIR}
+ \${CMAKE_SOURCE_DIR}
+ \${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
+ \${CMAKE_BINARY_DIR}
+ \${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
)
target_proto_outs(histogram-adaptive-protos
- --cpp_out=${CMAKE_BINARY_DIR}/
- --cpp_styleguide_out=${CMAKE_BINARY_DIR}/
+ --cpp_out=\${CMAKE_BINARY_DIR}/
+ --cpp_styleguide_out=\${CMAKE_BINARY_DIR}/
)
diff --git a/library/cpp/histogram/adaptive/protos/CMakeLists.linux.txt b/library/cpp/histogram/adaptive/protos/CMakeLists.linux.txt
index 51025bd7f5..bec512c3ae 100644
--- a/library/cpp/histogram/adaptive/protos/CMakeLists.linux.txt
+++ b/library/cpp/histogram/adaptive/protos/CMakeLists.linux.txt
@@ -15,18 +15,18 @@ target_link_libraries(histogram-adaptive-protos PUBLIC
contrib-libs-protobuf
)
target_proto_messages(histogram-adaptive-protos PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/protos/histo.proto
+ \${CMAKE_SOURCE_DIR}/library/cpp/histogram/adaptive/protos/histo.proto
)
target_proto_addincls(histogram-adaptive-protos
./
- ${CMAKE_SOURCE_DIR}/
- ${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}
- ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
- ${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
+ \${CMAKE_SOURCE_DIR}/
+ \${CMAKE_BINARY_DIR}
+ \${CMAKE_SOURCE_DIR}
+ \${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
+ \${CMAKE_BINARY_DIR}
+ \${CMAKE_SOURCE_DIR}/contrib/libs/protobuf/src
)
target_proto_outs(histogram-adaptive-protos
- --cpp_out=${CMAKE_BINARY_DIR}/
- --cpp_styleguide_out=${CMAKE_BINARY_DIR}/
+ --cpp_out=\${CMAKE_BINARY_DIR}/
+ --cpp_styleguide_out=\${CMAKE_BINARY_DIR}/
)