1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Sebastian Ramacher <sramacher@debian.org>
Date: Fri, 26 Sep 2025 10:47:10 +0200
Subject: Set minimum cmake version to 3.5
---
source/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt
index 4081eba..c4c6873 100755
--- a/source/CMakeLists.txt
+++ b/source/CMakeLists.txt
@@ -17,7 +17,7 @@ if(POLICY CMP0054)
endif()
project (x265)
-cmake_minimum_required (VERSION 2.8.8) # OBJECT libraries require 2.8.8
+cmake_minimum_required (VERSION 3.5) # OBJECT libraries require 2.8.8
include(CheckIncludeFiles)
include(CheckFunctionExists)
include(CheckSymbolExists)
|