blob: 56fc16b26d2e2292e2152d0ecc22a625a9c03488 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
From https://github.com/draios/sysdig/pull/2167
From: =?UTF-8?q?Holger=20Hoffst=C3=A4tte?= <holger@applied-asynchrony.com>
Date: Sun, 19 Oct 2025 12:56:26 +0200
Subject: [PATCH] fix(build): bump cmake_minimum_required to 3.12 everywhere
This brings the required CMake version in line with falcosecurity/libs.
Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com>
---
CMakeLists.txt | 2 +-
CMakeListsGtestInclude.cmake | 2 +-
cmake/modules/driver-repo/CMakeLists.txt | 2 +-
cmake/modules/falcosecurity-libs-repo/CMakeLists.txt | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b1cbd02ccd..97957b0835 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -33,7 +33,7 @@ if(EXISTS ${CMAKE_CURRENT_BINARY_DIR}/CMakeLists.txt)
"The following wiki page has more information on manually building sysdig: http://bit.ly/1oJ84UI")
endif()
-cmake_minimum_required(VERSION 3.5.1)
+cmake_minimum_required(VERSION 3.12)
project(sysdig)
diff --git a/CMakeListsGtestInclude.cmake b/CMakeListsGtestInclude.cmake
index 76c0f1b1ca..375e8efba0 100644
--- a/CMakeListsGtestInclude.cmake
+++ b/CMakeListsGtestInclude.cmake
@@ -16,7 +16,7 @@
# limitations under the License.
#
-cmake_minimum_required(VERSION 2.8.2)
+cmake_minimum_required(VERSION 3.12)
project(googletest-download NONE)
diff --git a/cmake/modules/driver-repo/CMakeLists.txt b/cmake/modules/driver-repo/CMakeLists.txt
index 6f8684b574..5c1939ce15 100644
--- a/cmake/modules/driver-repo/CMakeLists.txt
+++ b/cmake/modules/driver-repo/CMakeLists.txt
@@ -16,7 +16,7 @@
# limitations under the License.
#
-cmake_minimum_required(VERSION 3.5.1)
+cmake_minimum_required(VERSION 3.12)
project(driver-repo NONE)
diff --git a/cmake/modules/falcosecurity-libs-repo/CMakeLists.txt b/cmake/modules/falcosecurity-libs-repo/CMakeLists.txt
index 946cf5d260..5131a07ce2 100644
--- a/cmake/modules/falcosecurity-libs-repo/CMakeLists.txt
+++ b/cmake/modules/falcosecurity-libs-repo/CMakeLists.txt
@@ -16,7 +16,7 @@
# limitations under the License.
#
-cmake_minimum_required(VERSION 3.5.1)
+cmake_minimum_required(VERSION 3.12)
project(falcosecurity-libs-repo NONE)
|