1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Fix compat with Cmake-4
minimum supported cmake-version is now 3.4
Author: IOhannes m zmölnig
Origin: Debian
Forwarded: not-needed
Applied-Upstream: 0a95ad72b5eb0a81bc680c2ac04da9a7c220715b
Last-Update: 2025-09-30
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- csound-plugins.orig/CMakeLists.txt
+++ csound-plugins/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8.12)
+cmake_minimum_required(VERSION 3.12)
project(Csound-plugins)
if (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang")
set(CMAKE_COMPILER_IS_CLANG 1)
|