diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-24 11:43:00 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-24 11:43:00 +0300 |
commit | 42f6e0ffddb92ca389ac4bcd01acb0caa905c6df (patch) | |
tree | 6686ff11d0f47de24bfd487d00002ea3fb732490 /contrib/libs/apache | |
parent | ae944dbe1a985556fe224f49a2b1ea85147a07fe (diff) | |
download | ydb-42f6e0ffddb92ca389ac4bcd01acb0caa905c6df.tar.gz |
intermediate changes
ref:fb678b285db60965c2b65db96852ae4cfb5879d6
Diffstat (limited to 'contrib/libs/apache')
-rw-r--r-- | contrib/libs/apache/arrow/CMakeLists.txt | 3 | ||||
-rw-r--r-- | contrib/libs/apache/orc/CMakeLists.txt | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/contrib/libs/apache/arrow/CMakeLists.txt b/contrib/libs/apache/arrow/CMakeLists.txt index 20f336f42f..aa40b3dd92 100644 --- a/contrib/libs/apache/arrow/CMakeLists.txt +++ b/contrib/libs/apache/arrow/CMakeLists.txt @@ -1,3 +1,5 @@ +find_package(ZLIB) + add_library(libs-apache-arrow) target_compile_options(libs-apache-arrow PUBLIC -DARROW_STATIC @@ -45,6 +47,7 @@ target_link_libraries(libs-apache-arrow PUBLIC contrib-libs-snappy contrib-libs-utf8proc contrib-libs-xxhash + ZLIB::ZLIB contrib-libs-zstd contrib-restricted-boost contrib-restricted-fast_float diff --git a/contrib/libs/apache/orc/CMakeLists.txt b/contrib/libs/apache/orc/CMakeLists.txt index 70e9663c6d..2daf3c5578 100644 --- a/contrib/libs/apache/orc/CMakeLists.txt +++ b/contrib/libs/apache/orc/CMakeLists.txt @@ -1,3 +1,5 @@ +find_package(ZLIB) + add_library(libs-apache-orc) target_include_directories(libs-apache-orc PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/apache/orc/c++/include @@ -10,6 +12,7 @@ target_link_libraries(libs-apache-orc PUBLIC contrib-libs-cxxsupp contrib-libs-lz4 contrib-libs-snappy + ZLIB::ZLIB contrib-libs-zstd contrib-libs-protobuf ) |