mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
27 lines
806 B
Diff
27 lines
806 B
Diff
From 9500379f886484382bba2f893faf49865de9f2c0 Mon Sep 17 00:00:00 2001
|
|
From: Justin Jacobs <jajdorkster@gmail.com>
|
|
Date: Sat, 5 Apr 2025 18:27:55 -0400
|
|
Subject: [PATCH] Minimum CMake version = 3.5
|
|
|
|
From the CMake 4.0 release notes:
|
|
> Compatibility with versions of CMake older than 3.5 has been removed.
|
|
|
|
Upstream: https://github.com/flareteam/flare-engine/commit/9500379f886484382bba2f893faf49865de9f2c0
|
|
|
|
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
|
|
---
|
|
CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 897c19c3d..def8121c4 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -1,5 +1,5 @@
|
|
Project (Flare)
|
|
-cmake_minimum_required (VERSION 2.8.12)
|
|
+cmake_minimum_required (VERSION 3.5)
|
|
|
|
Set (PACKAGE "FLARE")
|
|
Set (VERSION "1.14")
|