https://github.com/indilib/indi/pull/2249 From 5069792abd3dfd7fa84c2a0cece848d45b111bb5 Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Thu, 26 Jun 2025 22:50:00 +0200 Subject: [PATCH] Fix build with CMake-4 Compatibility with CMake < 3.5 has been removed from CMake 4. Signed-off-by: Andreas Sturmlechner --- integs/CMakeLists.txt | 2 +- test/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integs/CMakeLists.txt b/integs/CMakeLists.txt index 9afe7c102..366be9c90 100644 --- a/integs/CMakeLists.txt +++ b/integs/CMakeLists.txt @@ -1,4 +1,4 @@ -CMAKE_MINIMUM_REQUIRED (VERSION 3.0) +cmake_minimum_required(VERSION 3.13) FIND_PACKAGE (GTest REQUIRED) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 35bf91219..5dd12bc0d 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,4 +1,4 @@ -CMAKE_MINIMUM_REQUIRED (VERSION 3.0) +cmake_minimum_required(VERSION 3.13) FIND_PACKAGE (GMock REQUIRED) -- 2.50.0