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/streams | |
parent | 5e837a820d5be0671fa4096a1cc1e378453e5132 (diff) | |
download | ydb-b4cb34dfb2619f594d82e512fd9ff7fc97400133.tar.gz |
intermediate changes
ref:1a0585d83f27cb6fb5b9c4f68a08177e10faf3b3
Diffstat (limited to 'library/cpp/streams')
-rw-r--r-- | library/cpp/streams/brotli/CMakeLists.txt | 10 | ||||
-rw-r--r-- | library/cpp/streams/bzip2/CMakeLists.txt | 9 | ||||
-rw-r--r-- | library/cpp/streams/lzma/CMakeLists.txt | 9 | ||||
-rw-r--r-- | library/cpp/streams/zc_memory_input/CMakeLists.txt | 8 | ||||
-rw-r--r-- | library/cpp/streams/zstd/CMakeLists.txt | 9 |
5 files changed, 45 insertions, 0 deletions
diff --git a/library/cpp/streams/brotli/CMakeLists.txt b/library/cpp/streams/brotli/CMakeLists.txt new file mode 100644 index 0000000000..7f4c7f9881 --- /dev/null +++ b/library/cpp/streams/brotli/CMakeLists.txt @@ -0,0 +1,10 @@ +add_library(cpp-streams-brotli) +target_link_libraries(cpp-streams-brotli PUBLIC + contrib-libs-cxxsupp + yutil + libs-brotli-enc + libs-brotli-dec +) +target_sources(cpp-streams-brotli PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/streams/brotli/brotli.cpp +) diff --git a/library/cpp/streams/bzip2/CMakeLists.txt b/library/cpp/streams/bzip2/CMakeLists.txt new file mode 100644 index 0000000000..f501474af4 --- /dev/null +++ b/library/cpp/streams/bzip2/CMakeLists.txt @@ -0,0 +1,9 @@ +add_library(cpp-streams-bzip2) +target_link_libraries(cpp-streams-bzip2 PUBLIC + contrib-libs-cxxsupp + yutil + contrib-libs-libbz2 +) +target_sources(cpp-streams-bzip2 PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/streams/bzip2/bzip2.cpp +) diff --git a/library/cpp/streams/lzma/CMakeLists.txt b/library/cpp/streams/lzma/CMakeLists.txt new file mode 100644 index 0000000000..1bd6be5cdf --- /dev/null +++ b/library/cpp/streams/lzma/CMakeLists.txt @@ -0,0 +1,9 @@ +add_library(cpp-streams-lzma) +target_link_libraries(cpp-streams-lzma PUBLIC + contrib-libs-cxxsupp + yutil + contrib-libs-lzmasdk +) +target_sources(cpp-streams-lzma PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/streams/lzma/lzma.cpp +) diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.txt b/library/cpp/streams/zc_memory_input/CMakeLists.txt new file mode 100644 index 0000000000..b44328829d --- /dev/null +++ b/library/cpp/streams/zc_memory_input/CMakeLists.txt @@ -0,0 +1,8 @@ +add_library(cpp-streams-zc_memory_input) +target_link_libraries(cpp-streams-zc_memory_input PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(cpp-streams-zc_memory_input PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/streams/zc_memory_input/zc_memory_input.cpp +) diff --git a/library/cpp/streams/zstd/CMakeLists.txt b/library/cpp/streams/zstd/CMakeLists.txt new file mode 100644 index 0000000000..fcc8476239 --- /dev/null +++ b/library/cpp/streams/zstd/CMakeLists.txt @@ -0,0 +1,9 @@ +add_library(cpp-streams-zstd) +target_link_libraries(cpp-streams-zstd PUBLIC + contrib-libs-cxxsupp + yutil + contrib-libs-zstd +) +target_sources(cpp-streams-zstd PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/streams/zstd/zstd.cpp +) |