Skip to content

Commit

Permalink
Set cmake minimum requirement to 3.24.0
Browse files Browse the repository at this point in the history
Signed-off-by: Naveen Tatikonda <[email protected]>
  • Loading branch information
naveentatikonda committed Jul 8, 2024
1 parent 5c063a1 commit 1deccae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion jni/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 1deccae

Please sign in to comment.