From 062710d3bd97db7e31e3215776a82d1737604887 Mon Sep 17 00:00:00 2001 From: Mikhail Fomenko Date: Mon, 9 Dec 2024 16:14:37 +0300 Subject: [PATCH] 119: Fixed CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a0bbf6a..b9e8599 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -93,7 +93,7 @@ if(STATIC_BUILD) set(RDKAFKA_LIBRARY ${RDKAFKA_LIBRARY} librdkafka_static) else() - find_package(RDKAFKA REQUIRED) + find_package(RdKafka REQUIRED) # Link RdKafka transitive dependencies manually set(RDKAFKA_LIBRARY ${RDKAFKA_LIBRARY} ${OPENSSL_CRYPTO_LIBRARY} ${OPENSSL_SSL_LIBRARY}) endif()