From 14d31a8867167a573340bba81a1612d716cee80c Mon Sep 17 00:00:00 2001 From: Brett Randall Date: Wed, 1 Nov 2023 19:48:50 +1100 Subject: [PATCH] Updated cmake_minimum_required to 3.15 to match Zeek. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3888cab..86fd29d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ # limitations under the License. # -cmake_minimum_required(VERSION 3.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) project(ZeekPlugin_Kafka) include(ZeekPlugin) find_package(LibRDKafka)