Skip to content

Commit

Permalink
Avoid warnings about CMake compatibility
Browse files Browse the repository at this point in the history
The full message I got is this:

> CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
>   Compatibility with CMake < 3.5 will be removed from a future version of
>   CMake.
>
>   Update the VERSION argument <min> value or use a ...<max> suffix to tell
>   CMake that the project does not need compatibility with older versions.
  • Loading branch information
fingolfin committed Dec 21, 2023
1 parent 2f97ab9 commit 73fd7a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.01)
cmake_minimum_required(VERSION 3.5)

project(libsingular_julia)

Expand Down

0 comments on commit 73fd7a5

Please sign in to comment.