1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix FTBFS with CMake 4
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/1113591
Origin: backport, https://github.com/mobius3/tweeny/commit/ee9229dbf417724312bb5a2a427945c4986257f1
--- tweeny-3.orig/CMakeLists.txt
+++ tweeny-3/CMakeLists.txt
@@ -25,7 +25,7 @@
# target that uses tweeny, a simple `target_link_libraries(target tweeny)` is sufficient to set up include and link
# instructions.
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 3.0...3.5)
project(Tweeny)
# Setup variables and options
|