aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/histogram/adaptive
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/adaptive
parent840348d6ec22ac423ac3bfb7f586936bdc5d7059 (diff)
downloadydb-9f448c9c675e670d53bba7a8d74a995b2d9a3606.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 1c5c6f2745b..82fb24cb786 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 917221ecb4b..089ec72973d 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 917221ecb4b..089ec72973d 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 8facb92cffd..c1c5db3e565 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 bec512c3ae6..51025bd7f57 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 bec512c3ae6..51025bd7f57 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}/
)