1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Sat, 22 Nov 2025 13:23:41 +0100
Subject: Fix FTBFS with CMake 4
---
test/assets/test-cmake-1.0/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/assets/test-cmake-1.0/CMakeLists.txt b/test/assets/test-cmake-1.0/CMakeLists.txt
index 551efbd..f9746dc 100644
--- a/test/assets/test-cmake-1.0/CMakeLists.txt
+++ b/test/assets/test-cmake-1.0/CMakeLists.txt
@@ -1,7 +1,7 @@
# CMakeLists files in this project can
# refer to the root source directory of the project as ${HELLO_SOURCE_DIR} and
# to the root binary directory of the project as ${HELLO_BINARY_DIR}.
-cmake_minimum_required (VERSION 2.8.7)
+cmake_minimum_required (VERSION 3.10)
project (HELLO)
add_executable (hello hello.c)
install (TARGETS hello DESTINATION bin)
|