From 638e5ef16e94d98e2a6fcf2dfac4b1d93b23cccb Mon Sep 17 00:00:00 2001 From: mosfet80 <10235105+mosfet80@users.noreply.github.com> Date: Fri, 3 Oct 2025 14:23:29 +0200 Subject: [PATCH] fix cmake deprecation (#273) cmake version < then 3.10 is deprecated. Signed-off-by: Mos (cherry picked from commit 2798b48780ab84e1af635cf64c4fe0e5b3fa7602) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c4b1385..f41ffb1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.20) project(pluginlib) # Default to C++17