This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-2.3
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-2.3 by this push:
new 07ad9cba7 ORC-2103: Update CMake requirements to 3.25+ consistently
07ad9cba7 is described below
commit 07ad9cba7930e50ce5bb4d9057b1c42626fae690
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sun Feb 22 19:13:05 2026 -0800
ORC-2103: Update CMake requirements to 3.25+ consistently
### What changes were proposed in this pull request?
This PR aims to update CMake requirements to 3.25+ consistently.
### Why are the changes needed?
We had better fix these outdated information because we already bumped the
minimum requirement to 3.25+.
- https://github.com/apache/orc/pull/2416
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
Generated-by: `Gemini 3.1 Pro (High)` on `Antigravity`
Closes #2545 from dongjoon-hyun/ORC-2103.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit 0c66d74ac170fa77cdce039b19747bc3c054574b)
Signed-off-by: Dongjoon Hyun <[email protected]>
---
README.md | 2 +-
conan/all/test_package/CMakeLists.txt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 3e018e712..96ec3096b 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ The subdirectories are:
* Install java 17 or higher
* Install maven 3.9.9 or higher
-* Install cmake 3.12 or higher
+* Install cmake 3.25.0 or higher
* Install meson 1.3.0 or higher (Optional)
To build a release version with debug information:
diff --git a/conan/all/test_package/CMakeLists.txt
b/conan/all/test_package/CMakeLists.txt
index 1bc6bb47d..9a090be3c 100644
--- a/conan/all/test_package/CMakeLists.txt
+++ b/conan/all/test_package/CMakeLists.txt
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-cmake_minimum_required(VERSION 3.15)
+cmake_minimum_required(VERSION 3.25.0)
project(test_package LANGUAGES CXX)
find_package(orc REQUIRED CONFIG)