From b7cc5afa788f87bd654fa4cc3baf5e17e2825d4f Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Thu, 15 Jun 2023 11:44:45 -0700 Subject: [PATCH] binpac: Require CMake 3.15.0 to build, similar to the recent changes to zeek and broker --- tools/binpac/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/binpac/CMakeLists.txt b/tools/binpac/CMakeLists.txt index 0960a0a410..30a4ad41c1 100644 --- a/tools/binpac/CMakeLists.txt +++ b/tools/binpac/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5 FATAL_ERROR) +cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR) project(BinPAC C CXX) include(cmake/CommonCMakeConfig.cmake)