summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-04-02 10:11:21 +0100
committerSadie Powell <sadie@witchery.services>2025-04-02 10:11:21 +0100
commit97c63822fcd454ad846dea5a42718fdb32152632 (patch)
tree9270faedf03a3c3151fe7a7d4a4a5abace7d547b /CMakeLists.txt
parent698dd78ef85e8044d3813bcfe4b8b567f746c35a (diff)
Bump the minimum CMake version to 3.20.
This should hopefully prevent us from being burned by CMake dropping old version compatibility for a long time.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e86e73998..f59f47b5c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
-# This usage of CMake requires at least version 3.8
-cmake_minimum_required(VERSION 3.8 FATAL_ERROR)
+# This usage of CMake requires at least version 3.20
+cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
# Set the project as C++ primarily, but have C enabled for the checks required later
project(Anope CXX)