Skip to content

Commit

Permalink
Bump cmake_minimum_required() to 3.10
Browse files Browse the repository at this point in the history
Recent CMake versions emit:
```
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.10 will be removed from a future version of
  CMake.
  Update the VERSION argument <min> value.  Or, use the <min>...<max> syntax
  to tell CMake that the project requires at least <min> but has been updated
  to work with policies introduced by <max> or earlier.
```
  • Loading branch information
rouault committed Jan 12, 2025
1 parent 93fd884 commit cbca244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.5)
cmake_minimum_required(VERSION 3.10)
if(MSVC)
cmake_minimum_required(VERSION 3.13)
endif()
Expand Down

0 comments on commit cbca244

Please sign in to comment.