Commit bf2e7d30d4ea200bc142dd29dcc9acd7d2d413d7

Martin Mitas 2024-01-08T18:19:26

Require CMake 3.5 or newer. The recent versions of CMake started to warn about compatibility with older CMake versions than 3.5.

1
2
3
4
5
6
7
8
9
10
11
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cab797e..2613063 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
 
-cmake_minimum_required(VERSION 3.4)
+cmake_minimum_required(VERSION 3.5)
 project(MD4C C)
 
 set(MD_VERSION_MAJOR 0)