mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
24 lines
693 B
Diff
24 lines
693 B
Diff
From a9426941555ec52b25c3641ebb8af72d7d91ebf8 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?C=C5=93ur?= <coeur@gmx.fr>
|
|
Date: Sun, 28 Apr 2024 13:16:54 +0800
|
|
Subject: [PATCH] Fix CMake Deprecation Warning
|
|
|
|
---
|
|
CMakeLists.txt | 2 +-
|
|
test-export/CMakeLists.txt | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 2ba64403ca..1869fccd2d 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -19,7 +19,7 @@
|
|
# start libevent.sln
|
|
#
|
|
|
|
-cmake_minimum_required(VERSION 3.4 FATAL_ERROR)
|
|
+cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
|
|
|
|
if (POLICY CMP0042)
|
|
cmake_policy(SET CMP0042 NEW) # MACOSX_RPATH is enabled by default.
|