diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-18 15:49:59 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-18 15:49:59 +0300 |
commit | b4cb34dfb2619f594d82e512fd9ff7fc97400133 (patch) | |
tree | 6a64ab25a145265287789bceed3f59e953561206 /library/cpp/yt | |
parent | 5e837a820d5be0671fa4096a1cc1e378453e5132 (diff) | |
download | ydb-b4cb34dfb2619f594d82e512fd9ff7fc97400133.tar.gz |
intermediate changes
ref:1a0585d83f27cb6fb5b9c4f68a08177e10faf3b3
Diffstat (limited to 'library/cpp/yt')
-rw-r--r-- | library/cpp/yt/assert/CMakeLists.txt | 8 | ||||
-rw-r--r-- | library/cpp/yt/coding/CMakeLists.txt | 6 | ||||
-rw-r--r-- | library/cpp/yt/exception/CMakeLists.txt | 8 | ||||
-rw-r--r-- | library/cpp/yt/memory/CMakeLists.txt | 13 | ||||
-rw-r--r-- | library/cpp/yt/misc/CMakeLists.txt | 10 | ||||
-rw-r--r-- | library/cpp/yt/string/CMakeLists.txt | 13 | ||||
-rw-r--r-- | library/cpp/yt/yson/CMakeLists.txt | 9 | ||||
-rw-r--r-- | library/cpp/yt/yson_string/CMakeLists.txt | 15 |
8 files changed, 82 insertions, 0 deletions
diff --git a/library/cpp/yt/assert/CMakeLists.txt b/library/cpp/yt/assert/CMakeLists.txt new file mode 100644 index 0000000000..b54c8c6016 --- /dev/null +++ b/library/cpp/yt/assert/CMakeLists.txt @@ -0,0 +1,8 @@ +add_library(cpp-yt-assert) +target_link_libraries(cpp-yt-assert PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(cpp-yt-assert PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/yt/assert/assert.cpp +) diff --git a/library/cpp/yt/coding/CMakeLists.txt b/library/cpp/yt/coding/CMakeLists.txt new file mode 100644 index 0000000000..6313fcdc36 --- /dev/null +++ b/library/cpp/yt/coding/CMakeLists.txt @@ -0,0 +1,6 @@ +add_library(cpp-yt-coding INTERFACE) +target_link_libraries(cpp-yt-coding INTERFACE + contrib-libs-cxxsupp + yutil + cpp-yt-exception +) diff --git a/library/cpp/yt/exception/CMakeLists.txt b/library/cpp/yt/exception/CMakeLists.txt new file mode 100644 index 0000000000..26ead463a0 --- /dev/null +++ b/library/cpp/yt/exception/CMakeLists.txt @@ -0,0 +1,8 @@ +add_library(cpp-yt-exception) +target_link_libraries(cpp-yt-exception PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(cpp-yt-exception PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/yt/exception/exception.cpp +) diff --git a/library/cpp/yt/memory/CMakeLists.txt b/library/cpp/yt/memory/CMakeLists.txt new file mode 100644 index 0000000000..ef15eea6fd --- /dev/null +++ b/library/cpp/yt/memory/CMakeLists.txt @@ -0,0 +1,13 @@ +add_library(cpp-yt-memory) +target_link_libraries(cpp-yt-memory PUBLIC + contrib-libs-cxxsupp + yutil + cpp-yt-assert + cpp-yt-misc + cpp-ytalloc-api +) +target_sources(cpp-yt-memory PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/yt/memory/blob.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/yt/memory/ref.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/yt/memory/ref_tracked.cpp +) diff --git a/library/cpp/yt/misc/CMakeLists.txt b/library/cpp/yt/misc/CMakeLists.txt new file mode 100644 index 0000000000..c9ac50fd71 --- /dev/null +++ b/library/cpp/yt/misc/CMakeLists.txt @@ -0,0 +1,10 @@ +add_library(cpp-yt-misc) +target_link_libraries(cpp-yt-misc PUBLIC + contrib-libs-cxxsupp + yutil + cpp-yt-exception +) +target_sources(cpp-yt-misc PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/yt/misc/guid.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/yt/misc/source_location.cpp +) diff --git a/library/cpp/yt/string/CMakeLists.txt b/library/cpp/yt/string/CMakeLists.txt new file mode 100644 index 0000000000..d26e6e35be --- /dev/null +++ b/library/cpp/yt/string/CMakeLists.txt @@ -0,0 +1,13 @@ +add_library(cpp-yt-string) +target_link_libraries(cpp-yt-string PUBLIC + contrib-libs-cxxsupp + yutil + cpp-yt-assert + cpp-yt-exception + cpp-yt-misc +) +target_sources(cpp-yt-string PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/yt/string/enum.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/yt/string/guid.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/yt/string/string.cpp +) diff --git a/library/cpp/yt/yson/CMakeLists.txt b/library/cpp/yt/yson/CMakeLists.txt new file mode 100644 index 0000000000..932a649365 --- /dev/null +++ b/library/cpp/yt/yson/CMakeLists.txt @@ -0,0 +1,9 @@ +add_library(cpp-yt-yson) +target_link_libraries(cpp-yt-yson PUBLIC + contrib-libs-cxxsupp + yutil + cpp-yt-yson_string +) +target_sources(cpp-yt-yson PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/yt/yson/consumer.cpp +) diff --git a/library/cpp/yt/yson_string/CMakeLists.txt b/library/cpp/yt/yson_string/CMakeLists.txt new file mode 100644 index 0000000000..f99bb3d9b2 --- /dev/null +++ b/library/cpp/yt/yson_string/CMakeLists.txt @@ -0,0 +1,15 @@ +add_library(cpp-yt-yson_string) +target_link_libraries(cpp-yt-yson_string PUBLIC + contrib-libs-cxxsupp + yutil + cpp-yt-assert + cpp-yt-coding + cpp-yt-exception + cpp-yt-string + cpp-yt-memory + cpp-yt-misc +) +target_sources(cpp-yt-yson_string PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/yt/yson_string/convert.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/yt/yson_string/string.cpp +) |