From 714b8741268d3286f01be9822cf2a158157dc928 Mon Sep 17 00:00:00 2001 From: mosfet80 <10235105+mosfet80@users.noreply.github.com> Date: Mon, 14 Jul 2025 12:30:30 +0200 Subject: [PATCH] fix cmake deprecation cmake version < then 3.10 is deprecated. Signed-off-by: Mos --- 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