1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Increase cmake_minimum_required to 3.5
CMake version 3.27 deprecates compatibility with versions older than
3.5. Increase the minimum required so that the project can be built
without warnings.
Author: Eero Aaltonen <eero.aaltonen@vaisala.com>
Last-Update: 2023-11-01
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: docopt.cpp.git/CMakeLists.txt
===================================================================
--- docopt.cpp.git.orig/CMakeLists.txt 2023-11-01 12:01:42.321980624 +0200
+++ docopt.cpp.git/CMakeLists.txt 2023-11-01 12:02:12.918255843 +0200
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.1)
+cmake_minimum_required(VERSION 3.5)
project(docopt.cpp VERSION 0.6.3)
include(GNUInstallDirs)
|