aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lfalloc
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/lfalloc
parent8118c921f2a3bd04c89bd2b89cc01bcc1bae4e93 (diff)
downloadydb-94299c40d78c487307d3b744ecadf539dc13bb1a.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 0ed088d373..ec251dd057 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 8d6d385cae..4b17e5135a 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 b94d19ad32..86aa77ee55 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 d215bfaccc..a9cbad45a5 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 d215bfaccc..a9cbad45a5 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 ec8b8ba23b..4e14a16527 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 05ee5297ba..dcc35ed78a 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 05ee5297ba..dcc35ed78a 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 751d2c05df..01fd14172a 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
)