summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlper Ak <alperyasinak1@gmail.com>2025-07-10 20:38:25 +0300
committerKhem Raj <raj.khem@gmail.com>2025-07-10 10:46:24 -0700
commit1109cc27a56698bcea7dec11a7ff45d7b3b69b5e (patch)
tree3e856d73da537646cdf08e26b4640e978e615a7d
parent119bab03d399490b12213aed9c6ad214fce29cde (diff)
downloadmeta-openembedded-1109cc27a56698bcea7dec11a7ff45d7b3b69b5e.tar.gz
cmatrix: Add patch for CMake 4+ compatibility
Fix: | CMake Error at CMakeLists.txt:3 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-extended/cmatrix/cmatrix/0002-allow-build-with-cmake-4.patch42
-rw-r--r--meta-oe/recipes-extended/cmatrix/cmatrix_2.0.bb1
2 files changed, 43 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/cmatrix/cmatrix/0002-allow-build-with-cmake-4.patch b/meta-oe/recipes-extended/cmatrix/cmatrix/0002-allow-build-with-cmake-4.patch
new file mode 100644
index 0000000000..ab5229a94a
--- /dev/null
+++ b/meta-oe/recipes-extended/cmatrix/cmatrix/0002-allow-build-with-cmake-4.patch
@@ -0,0 +1,42 @@
1From 1099359c94bb3e404446d3624e4400823de27367 Mon Sep 17 00:00:00 2001
2From: Alper Ak <alperyasinak1@gmail.com>
3Date: Thu, 10 Jul 2025 13:39:21 +0300
4Subject: [PATCH] cmake: Set minimum required version to 3.5 for CMake 4+
5 compatibility
6
7Fix
8
9| CMake Error at CMakeLists.txt:3 (cmake_minimum_required):
10| Compatibility with CMake < 3.5 has been removed from CMake.
11|
12| Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
13| to tell CMake that the project requires at least <min> but has been updated
14| to work with policies introduced by <max> or earlier.
15|
16| Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.
17|
18|
19| -- Configuring incomplete, errors occurred!
20
21Upstream-Status: Submitted [https://github.com/abishekvashok/cmatrix/pull/201]
22
23Signed-off-by: Alper Ak <alperyasinak1@gmail.com>
24---
25 CMakeLists.txt | 2 +-
26 1 file changed, 1 insertion(+), 1 deletion(-)
27
28diff --git a/CMakeLists.txt b/CMakeLists.txt
29index a2f8b4d..3e60aec 100644
30--- a/CMakeLists.txt
31+++ b/CMakeLists.txt
32@@ -1,6 +1,6 @@
33 # CMake build system for CMatrix
34
35-cmake_minimum_required(VERSION 2.8)
36+cmake_minimum_required(VERSION 3.5)
37
38 project(CMatrix LANGUAGES C)
39 set(VERSION "2.0")
40--
412.43.0
42
diff --git a/meta-oe/recipes-extended/cmatrix/cmatrix_2.0.bb b/meta-oe/recipes-extended/cmatrix/cmatrix_2.0.bb
index e1a6af622b..2c00c6ded4 100644
--- a/meta-oe/recipes-extended/cmatrix/cmatrix_2.0.bb
+++ b/meta-oe/recipes-extended/cmatrix/cmatrix_2.0.bb
@@ -6,6 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
6SRC_URI = " \ 6SRC_URI = " \
7 git://github.com/abishekvashok/cmatrix.git;branch=stable;protocol=https \ 7 git://github.com/abishekvashok/cmatrix.git;branch=stable;protocol=https \
8 file://0001-reproducibility-Prevent-configuration-from-reading-h.patch \ 8 file://0001-reproducibility-Prevent-configuration-from-reading-h.patch \
9 file://0002-allow-build-with-cmake-4.patch \
9" 10"
10SRCREV = "adfdf1656f23e5ab3b52c7d7edf91249a4477e8d" 11SRCREV = "adfdf1656f23e5ab3b52c7d7edf91249a4477e8d"
11 12