blob: 170d7995027ecb69dfacfc994c864239e640e51a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
From c5004770784dc5ff80b88487de38c22275a7960a Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 12 Jul 2025 16:04:38 -0700
Subject: [PATCH] cmake: Bump minimum version to 3.10
Cmake4+ has dropped support for cmake < 3.5 [1]
[1] https://cmake.org/cmake/help/latest/release/4.0.html#deprecated-and-removed-features
Upstream-Status: Submitted [https://github.com/cwzx/nngpp/pull/38]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index caa7145..45a5ad5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required (VERSION 3.1)
+cmake_minimum_required (VERSION 3.10)
project(nngpp CXX)
include(GNUInstallDirs)
|