aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/histogram
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-02-07 21:14:00 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-02-07 21:14:00 +0300
commit9f448c9c675e670d53bba7a8d74a995b2d9a3606 (patch)
tree81cb5c300de0ed2dd55497e5f21602556f255e5d /library/cpp/histogram
parent840348d6ec22ac423ac3bfb7f586936bdc5d7059 (diff)
downloadydb-9f448c9c675e670d53bba7a8d74a995b2d9a3606.tar.gz
Intermediate changes
Diffstat (limited to 'library/cpp/histogram')
-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
-rw-r--r--library/cpp/histogram/hdr/CMakeLists.darwin.txt4
-rw-r--r--library/cpp/histogram/hdr/CMakeLists.linux-aarch64.txt4
-rw-r--r--library/cpp/histogram/hdr/CMakeLists.linux.txt4
9 files changed, 45 insertions, 45 deletions
diff --git a/library/cpp/histogram/adaptive/CMakeLists.darwin.txt b/library/cpp/histogram/adaptive/CMakeLists.darwin.txt
index 1c5c6f2745..82fb24cb78 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 917221ecb4..089ec72973 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 917221ecb4..089ec72973 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 8facb92cff..c1c5db3e56 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 bec512c3ae..51025bd7f5 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 bec512c3ae..51025bd7f5 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}/
)
diff --git a/library/cpp/histogram/hdr/CMakeLists.darwin.txt b/library/cpp/histogram/hdr/CMakeLists.darwin.txt
index a2e3f2dfb7..cf961268fa 100644
--- a/library/cpp/histogram/hdr/CMakeLists.darwin.txt
+++ b/library/cpp/histogram/hdr/CMakeLists.darwin.txt
@@ -14,6 +14,6 @@ target_link_libraries(cpp-histogram-hdr PUBLIC
contrib-libs-hdr_histogram
)
target_sources(cpp-histogram-hdr PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram.cpp
- \${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram_iter.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram_iter.cpp
)
diff --git a/library/cpp/histogram/hdr/CMakeLists.linux-aarch64.txt b/library/cpp/histogram/hdr/CMakeLists.linux-aarch64.txt
index 2b922c0c20..66b62a62a9 100644
--- a/library/cpp/histogram/hdr/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/histogram/hdr/CMakeLists.linux-aarch64.txt
@@ -15,6 +15,6 @@ target_link_libraries(cpp-histogram-hdr PUBLIC
contrib-libs-hdr_histogram
)
target_sources(cpp-histogram-hdr PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram.cpp
- \${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram_iter.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram_iter.cpp
)
diff --git a/library/cpp/histogram/hdr/CMakeLists.linux.txt b/library/cpp/histogram/hdr/CMakeLists.linux.txt
index 2b922c0c20..66b62a62a9 100644
--- a/library/cpp/histogram/hdr/CMakeLists.linux.txt
+++ b/library/cpp/histogram/hdr/CMakeLists.linux.txt
@@ -15,6 +15,6 @@ target_link_libraries(cpp-histogram-hdr PUBLIC
contrib-libs-hdr_histogram
)
target_sources(cpp-histogram-hdr PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram.cpp
- \${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram_iter.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/histogram/hdr/histogram_iter.cpp
)