From 1deccae8ee7a0d58795aff176f2e588f6eb5cd3c Mon Sep 17 00:00:00 2001 From: Naveen Tatikonda Date: Mon, 8 Jul 2024 13:53:51 -0500 Subject: [PATCH] Set cmake minimum requirement to 3.24.0 Signed-off-by: Naveen Tatikonda --- DEVELOPER_GUIDE.md | 4 ++-- jni/CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 0ff5a0bdb..daab5b936 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -57,11 +57,11 @@ In addition to this, the plugin has been tested with JDK 17, and this JDK versio #### CMake -The plugin requires that cmake >= 3.23.3 is installed in order to build the JNI libraries. +The plugin requires that cmake >= 3.24.0 is installed in order to build the JNI libraries. One easy way to install on mac or linux is to use pip: ```bash -pip install cmake==3.23.3 +pip install cmake==3.24.0 ``` On Mac M series machines, install cmake using: diff --git a/jni/CMakeLists.txt b/jni/CMakeLists.txt index 2fe26875d..3c071fc1f 100644 --- a/jni/CMakeLists.txt +++ b/jni/CMakeLists.txt @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.23.1) +cmake_minimum_required(VERSION 3.24.0) project(KNNPlugin_JNI)