Skip to content

Commit 3e2cbe6

Browse files
committed
Bump minimum CMake version to 3.11
Red Hat Enterprise Linux (RHEL) 7 has reached its end of life in 2024. This means we can bump the minimum required version to 3.11 which is provided in RHEL 8 [1]. We assume that other systems either have CMake 3.11 or newer available, or have a way to install a sufficently new CMake versions. Bumping the minimum version removes some deprecation warning (about support for older CMake versions being dropped), and also ensures compatibility with CMake 4.0 which has dropped support for CMake <3.5 and was rolled out to GitHub runners recently. [1]: https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/8/html-single/8.0_release_notes/index#platform-tools
1 parent 3299427 commit 3e2cbe6

File tree

7 files changed

+8
-15
lines changed

7 files changed

+8
-15
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5)
1+
cmake_minimum_required(VERSION 3.11)
22
project(segyio LANGUAGES C CXX)
33

44
include(CheckFunctionExists)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ A copy of segyio is available both as pre-built binaries and source code:
9797
To build segyio you need:
9898
* A C99 compatible C compiler (tested mostly on gcc and clang)
9999
* A C++ compiler for the Python extension, and C++11 for the tests
100-
* [CMake](https://cmake.org/) version 2.8.12 or greater
100+
* [CMake](https://cmake.org/) version 3.11 or greater
101101
* [Python](https://www.python.org/) 3.9 or greater
102102
* [numpy](http://www.numpy.org/) version 1.10 or greater
103103
* [setuptools](https://pypi.python.org/pypi/setuptools) version 28 or greater

external/catch2/CMakeLists.txt

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
1-
cmake_minimum_required(VERSION 2.8.12)
1+
cmake_minimum_required(VERSION 3.11)
22
project(catch2 CXX)
33

4-
# Dummy source file added because INTERFACE type
5-
# library is not available in CMake 2.8.12
6-
# it's STATIC, because MSVC would otherwise not generate a .lib file, making
7-
# "linking" (for header path) fail later
8-
#
9-
# TODO: when cmake minimum version is bumped to 3.x series, replace with
10-
# an INTERFACE library
11-
add_library(catch2 STATIC dummy.cpp)
12-
target_include_directories(catch2 SYSTEM PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
4+
add_library(catch2 INTERFACE)
5+
target_include_directories(catch2 SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})

external/catch2/dummy.cpp

Whitespace-only changes.

lib/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5)
1+
cmake_minimum_required(VERSION 3.11)
22
project(libsegyio C CXX)
33

44
set(SEGYIO_LIB_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE PATH "")

python/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if (SKBUILD)
77
return ()
88
endif ()
99

10-
cmake_minimum_required(VERSION 3.5)
10+
cmake_minimum_required(VERSION 3.11)
1111
project(segyio-python)
1212

1313
if (REQUIRE_PYTHON)

python/setup-CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5.0)
1+
cmake_minimum_required(VERSION 3.11)
22
project(segyio-python-extension LANGUAGES C CXX)
33

44
set(CMAKE_CXX_STANDARD 11)

0 commit comments

Comments
 (0)