aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lfalloc
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/lfalloc
parent840348d6ec22ac423ac3bfb7f586936bdc5d7059 (diff)
downloadydb-9f448c9c675e670d53bba7a8d74a995b2d9a3606.tar.gz
Intermediate changes
Diffstat (limited to 'library/cpp/lfalloc')
-rw-r--r--library/cpp/lfalloc/CMakeLists.darwin.txt2
-rw-r--r--library/cpp/lfalloc/CMakeLists.linux.txt2
-rw-r--r--library/cpp/lfalloc/alloc_profiler/CMakeLists.darwin.txt4
-rw-r--r--library/cpp/lfalloc/alloc_profiler/CMakeLists.linux-aarch64.txt4
-rw-r--r--library/cpp/lfalloc/alloc_profiler/CMakeLists.linux.txt4
-rw-r--r--library/cpp/lfalloc/dbg_info/CMakeLists.darwin.txt2
-rw-r--r--library/cpp/lfalloc/dbg_info/CMakeLists.linux-aarch64.txt2
-rw-r--r--library/cpp/lfalloc/dbg_info/CMakeLists.linux.txt2
-rw-r--r--library/cpp/lfalloc/yt/CMakeLists.darwin.txt2
9 files changed, 12 insertions, 12 deletions
diff --git a/library/cpp/lfalloc/CMakeLists.darwin.txt b/library/cpp/lfalloc/CMakeLists.darwin.txt
index ec251dd057..0ed088d373 100644
--- a/library/cpp/lfalloc/CMakeLists.darwin.txt
+++ b/library/cpp/lfalloc/CMakeLists.darwin.txt
@@ -19,5 +19,5 @@ target_link_libraries(library-cpp-lfalloc PUBLIC
cpp-malloc-api
)
target_sources(library-cpp-lfalloc PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/lf_allocX64.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/lf_allocX64.cpp
)
diff --git a/library/cpp/lfalloc/CMakeLists.linux.txt b/library/cpp/lfalloc/CMakeLists.linux.txt
index 4b17e5135a..8d6d385cae 100644
--- a/library/cpp/lfalloc/CMakeLists.linux.txt
+++ b/library/cpp/lfalloc/CMakeLists.linux.txt
@@ -19,5 +19,5 @@ target_link_libraries(library-cpp-lfalloc PUBLIC
cpp-malloc-api
)
target_sources(library-cpp-lfalloc PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/lf_allocX64.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/lf_allocX64.cpp
)
diff --git a/library/cpp/lfalloc/alloc_profiler/CMakeLists.darwin.txt b/library/cpp/lfalloc/alloc_profiler/CMakeLists.darwin.txt
index 86aa77ee55..b94d19ad32 100644
--- a/library/cpp/lfalloc/alloc_profiler/CMakeLists.darwin.txt
+++ b/library/cpp/lfalloc/alloc_profiler/CMakeLists.darwin.txt
@@ -16,6 +16,6 @@ target_link_libraries(cpp-lfalloc-alloc_profiler PUBLIC
cpp-deprecated-atomic
)
target_sources(cpp-lfalloc-alloc_profiler PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/profiler.cpp
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/stackcollect.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/profiler.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/stackcollect.cpp
)
diff --git a/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux-aarch64.txt b/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux-aarch64.txt
index a9cbad45a5..d215bfaccc 100644
--- a/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux-aarch64.txt
@@ -17,6 +17,6 @@ target_link_libraries(cpp-lfalloc-alloc_profiler PUBLIC
cpp-deprecated-atomic
)
target_sources(cpp-lfalloc-alloc_profiler PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/profiler.cpp
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/stackcollect.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/profiler.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/stackcollect.cpp
)
diff --git a/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux.txt b/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux.txt
index a9cbad45a5..d215bfaccc 100644
--- a/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux.txt
+++ b/library/cpp/lfalloc/alloc_profiler/CMakeLists.linux.txt
@@ -17,6 +17,6 @@ target_link_libraries(cpp-lfalloc-alloc_profiler PUBLIC
cpp-deprecated-atomic
)
target_sources(cpp-lfalloc-alloc_profiler PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/profiler.cpp
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/stackcollect.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/profiler.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/alloc_profiler/stackcollect.cpp
)
diff --git a/library/cpp/lfalloc/dbg_info/CMakeLists.darwin.txt b/library/cpp/lfalloc/dbg_info/CMakeLists.darwin.txt
index 4e14a16527..ec8b8ba23b 100644
--- a/library/cpp/lfalloc/dbg_info/CMakeLists.darwin.txt
+++ b/library/cpp/lfalloc/dbg_info/CMakeLists.darwin.txt
@@ -14,5 +14,5 @@ target_link_libraries(cpp-lfalloc-dbg_info PUBLIC
cpp-malloc-api
)
target_sources(cpp-lfalloc-dbg_info PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/dbg_info/dbg_info.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/dbg_info/dbg_info.cpp
)
diff --git a/library/cpp/lfalloc/dbg_info/CMakeLists.linux-aarch64.txt b/library/cpp/lfalloc/dbg_info/CMakeLists.linux-aarch64.txt
index dcc35ed78a..05ee5297ba 100644
--- a/library/cpp/lfalloc/dbg_info/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/lfalloc/dbg_info/CMakeLists.linux-aarch64.txt
@@ -15,5 +15,5 @@ target_link_libraries(cpp-lfalloc-dbg_info PUBLIC
cpp-malloc-api
)
target_sources(cpp-lfalloc-dbg_info PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/dbg_info/dbg_info.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/dbg_info/dbg_info.cpp
)
diff --git a/library/cpp/lfalloc/dbg_info/CMakeLists.linux.txt b/library/cpp/lfalloc/dbg_info/CMakeLists.linux.txt
index dcc35ed78a..05ee5297ba 100644
--- a/library/cpp/lfalloc/dbg_info/CMakeLists.linux.txt
+++ b/library/cpp/lfalloc/dbg_info/CMakeLists.linux.txt
@@ -15,5 +15,5 @@ target_link_libraries(cpp-lfalloc-dbg_info PUBLIC
cpp-malloc-api
)
target_sources(cpp-lfalloc-dbg_info PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/dbg_info/dbg_info.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/dbg_info/dbg_info.cpp
)
diff --git a/library/cpp/lfalloc/yt/CMakeLists.darwin.txt b/library/cpp/lfalloc/yt/CMakeLists.darwin.txt
index 01fd14172a..751d2c05df 100644
--- a/library/cpp/lfalloc/yt/CMakeLists.darwin.txt
+++ b/library/cpp/lfalloc/yt/CMakeLists.darwin.txt
@@ -17,5 +17,5 @@ target_link_libraries(cpp-lfalloc-yt PUBLIC
cpp-malloc-api
)
target_sources(cpp-lfalloc-yt PRIVATE
- \${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/lf_allocX64.cpp
+ ${CMAKE_SOURCE_DIR}/library/cpp/lfalloc/lf_allocX64.cpp
)