aboutsummaryrefslogtreecommitdiff
path: root/cmake.deps/CMakeLists.txt
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2023-10-14 13:12:48 +0200
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2023-12-16 17:17:24 +0100
commit7840760776cf8dbaa580ced87aec0222dbb693d7 (patch)
tree6958f4808dc5881010ff1ab5195ac75722ca3248 /cmake.deps/CMakeLists.txt
parent896b400bff5ccc3d369bc19ab78bc4b5a8d88066 (diff)
downloadrneovim-7840760776cf8dbaa580ced87aec0222dbb693d7.tar.gz
rneovim-7840760776cf8dbaa580ced87aec0222dbb693d7.tar.bz2
rneovim-7840760776cf8dbaa580ced87aec0222dbb693d7.zip
build: bump minimum cmake version to 3.13
The benefits are primarily being able to use FetchContent, which allows for a more flexible dependency handling. Other various quality-of-life features such as `-B` and `-S` flags are also included. This also removes broken `--version` generation as it does not work for version 3.10 and 3.11 due to the `JOIN` generator expression. Reference: https://github.com/neovim/neovim/issues/24004
Diffstat (limited to 'cmake.deps/CMakeLists.txt')
-rw-r--r--cmake.deps/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake.deps/CMakeLists.txt b/cmake.deps/CMakeLists.txt
index 46052c12c6..54b13f20cb 100644
--- a/cmake.deps/CMakeLists.txt
+++ b/cmake.deps/CMakeLists.txt
@@ -1,5 +1,5 @@
# This is not meant to be included by the top-level.
-cmake_minimum_required (VERSION 3.10)
+cmake_minimum_required (VERSION 3.13)
project(NVIM_DEPS C)
if(POLICY CMP0135)