diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-10 11:08:43 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-10 11:08:43 +0300 |
commit | d32759b7eb812b4a4033cc61e1e98245544b4992 (patch) | |
tree | 22bbb3e9b46c1b55818aaf475f699ae187ce328b /library/cpp/malloc/tcmalloc | |
parent | 471e9b902d01b70b2d12146772e30528a216ee82 (diff) | |
download | ydb-d32759b7eb812b4a4033cc61e1e98245544b4992.tar.gz |
intermediate changes
ref:7e819949a28b77d60c98019ed1950733e734a77e
Diffstat (limited to 'library/cpp/malloc/tcmalloc')
-rw-r--r-- | library/cpp/malloc/tcmalloc/CMakeLists.linux.txt | 18 | ||||
-rw-r--r-- | library/cpp/malloc/tcmalloc/CMakeLists.txt | 13 |
2 files changed, 21 insertions, 10 deletions
diff --git a/library/cpp/malloc/tcmalloc/CMakeLists.linux.txt b/library/cpp/malloc/tcmalloc/CMakeLists.linux.txt new file mode 100644 index 0000000000..d46ca5e5fa --- /dev/null +++ b/library/cpp/malloc/tcmalloc/CMakeLists.linux.txt @@ -0,0 +1,18 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + + +add_library(cpp-malloc-tcmalloc) +target_link_libraries(cpp-malloc-tcmalloc PUBLIC + contrib-libs-cxxsupp + cpp-malloc-api + libs-tcmalloc-malloc_extension +) +target_sources(cpp-malloc-tcmalloc PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/malloc/tcmalloc/malloc-info.cpp +) diff --git a/library/cpp/malloc/tcmalloc/CMakeLists.txt b/library/cpp/malloc/tcmalloc/CMakeLists.txt index d46ca5e5fa..c031ddb850 100644 --- a/library/cpp/malloc/tcmalloc/CMakeLists.txt +++ b/library/cpp/malloc/tcmalloc/CMakeLists.txt @@ -6,13 +6,6 @@ # original buildsystem will not be accepted. - -add_library(cpp-malloc-tcmalloc) -target_link_libraries(cpp-malloc-tcmalloc PUBLIC - contrib-libs-cxxsupp - cpp-malloc-api - libs-tcmalloc-malloc_extension -) -target_sources(cpp-malloc-tcmalloc PRIVATE - ${CMAKE_SOURCE_DIR}/library/cpp/malloc/tcmalloc/malloc-info.cpp -) +if (UNIX) + include(CMakeLists.linux.txt) +endif() |