summaryrefslogtreecommitdiff
path: root/libs/libmdbx/src
diff options
context:
space:
mode:
authorSergey Ponomarev <stokito@gmail.com>2024-09-07 10:32:26 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-09-07 12:44:33 +0300
commitfe87f56f612237182ce76873ae090fcecc1af02e (patch)
tree59de5e8d93bf5175d369d768dbebd474f5c22d7a /libs/libmdbx/src
parentdd93365a63c1f051e4b453ee974a1708900c49ac (diff)
cmake: require cmake 3.11
The main CMakeLists.txt had cmake_minimum_required (VERSION 2.8). This made the cmake to show a deprecation notice that support of all versions below 3.5 will be dropped soon. The maximum required cmake version is 3.11 for the litehtml module. So let's set it as a minimum for all other modules. The FATAL_ERROR option is ignored in CMake >= 2.6.
Diffstat (limited to 'libs/libmdbx/src')
-rw-r--r--libs/libmdbx/src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libmdbx/src/CMakeLists.txt b/libs/libmdbx/src/CMakeLists.txt
index b0a1d4604d..df5866ceb5 100644
--- a/libs/libmdbx/src/CMakeLists.txt
+++ b/libs/libmdbx/src/CMakeLists.txt
@@ -34,7 +34,7 @@
## The Future will (be) Positive. Всё будет хорошо.
##
-cmake_minimum_required(VERSION 3.8.2)
+cmake_minimum_required(VERSION 3.11)
cmake_policy(PUSH)
cmake_policy(VERSION 3.8.2)