From 41dbcb1a81a036548c20310612ef7a032e6e3a90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Tue, 15 Aug 2023 10:56:28 +0200 Subject: [PATCH] core: set minimum CMake version to 3.5 This removes the following CMake warning: CMake Deprecation Warning at CMakeLists.txt:22 (cmake_minimum_required): Compatibility with CMake < 3.5 will be removed from a future version of CMake. Update the VERSION argument value or use a ... suffix to tell CMake that the project does not need compatibility with older versions. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aba92ce5e..6949c22a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ # along with WeeChat. If not, see . # -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.5) project(weechat C)