obuspa: vendor: bbf_plugin: Fix compatibility with CMake4

CMake 4 has dropped compatibility with old versions < 3.5, and will
drop compatibility for < 3.10 in the future. Update the minimum required
CMake version accordingly.

Signed-off-by: Andreas Gnau <andreas.gnau@iopsys.eu>
This commit is contained in:
Andreas Gnau 2025-12-17 19:54:04 +01:00 committed by Vivek Dutta
parent c61e80db94
commit aa0d2c6686

View file

@ -0,0 +1,27 @@
From ba976fdb53a7c8690fe7660d44c715838ad239cd Mon Sep 17 00:00:00 2001
From: Andreas Gnau <andreas.gnau@iopsys.eu>
Date: Mon, 15 Dec 2025 07:26:29 +0100
Subject: [PATCH] vendor: bbf_plugin: Fix compatibility with CMake4
CMake 4 has dropped compatibility with old versions < 3.5, and will
drop compatibility for < 3.10 in the future. Update the minimum required
CMake version accordingly.
Signed-off-by: Andreas Gnau <andreas.gnau@iopsys.eu>
---
src/vendor/bbf_plugin/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/vendor/bbf_plugin/CMakeLists.txt b/src/vendor/bbf_plugin/CMakeLists.txt
index e145dd4f6c12..9df17a1f8a7d 100644
--- a/src/vendor/bbf_plugin/CMakeLists.txt
+++ b/src/vendor/bbf_plugin/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 3.0...3.10)
PROJECT(libuspagentdm.so)
--
2.52.0