From 9500379f886484382bba2f893faf49865de9f2c0 Mon Sep 17 00:00:00 2001 From: Justin Jacobs 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 --- 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")