diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-24 17:52:14 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-24 17:52:14 +0300 |
commit | 154700b20366969d89b7f6b6ffcedf6be3a1deae (patch) | |
tree | 84c3ecf3cb6ca91983676fe6b79f0904d66a9462 /contrib/libs/poco | |
parent | e593c74c608a3cd3ec6189c63ec44ed28616340e (diff) | |
download | ydb-154700b20366969d89b7f6b6ffcedf6be3a1deae.tar.gz |
intermediate changes
ref:70ac1bca1acbb458c863fb4686263967ea009057
Diffstat (limited to 'contrib/libs/poco')
-rw-r--r-- | contrib/libs/poco/Crypto/CMakeLists.txt | 2 | ||||
-rw-r--r-- | contrib/libs/poco/Foundation/CMakeLists.txt | 2 | ||||
-rw-r--r-- | contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libs/poco/Crypto/CMakeLists.txt b/contrib/libs/poco/Crypto/CMakeLists.txt index 39f64a1c98..eaeebeaab3 100644 --- a/contrib/libs/poco/Crypto/CMakeLists.txt +++ b/contrib/libs/poco/Crypto/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(OpenSSL) +find_package(OpenSSL REQUIRED) add_library(libs-poco-Crypto) target_include_directories(libs-poco-Crypto PUBLIC diff --git a/contrib/libs/poco/Foundation/CMakeLists.txt b/contrib/libs/poco/Foundation/CMakeLists.txt index 0b01f82e06..6622570f2d 100644 --- a/contrib/libs/poco/Foundation/CMakeLists.txt +++ b/contrib/libs/poco/Foundation/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(ZLIB) +find_package(ZLIB REQUIRED) add_library(libs-poco-Foundation) target_include_directories(libs-poco-Foundation PUBLIC diff --git a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt index c5871b5325..3f163027d2 100644 --- a/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt +++ b/contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(OpenSSL) +find_package(OpenSSL REQUIRED) add_library(libs-poco-NetSSL_OpenSSL) target_include_directories(libs-poco-NetSSL_OpenSSL PUBLIC |