ffts: fix build with cmake 4 (#454166)

This commit is contained in:
Sandro
2025-10-23 23:43:38 +00:00
committed by GitHub
2 changed files with 14 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 748f412..d8821ee 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.10)
project(ffts C ASM)
+4
View File
@@ -20,6 +20,10 @@ stdenv.mkDerivation {
cmakeFlags = [ "-DENABLE_SHARED=ON" ];
patches = [
./cmake4.patch
];
meta = {
description = "Fastest Fourier Transform in the South";
homepage = "https://github.com/linkotec/ffts";