Skip to content

Commit

Permalink
Update minimum cmake version to 3.5 (#1)
Browse files Browse the repository at this point in the history
Newer version of CMake does not support current minimum version.

```
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.
```
  • Loading branch information
danilsem authored Jan 11, 2024
1 parent c1d85f7 commit 046f9f5
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.0.0)
cmake_minimum_required(VERSION 3.5.0)
project(sfml-project VERSION 0.1.0)

# As std::auto_ptr was removed in C++17, sfml-audio fails to compile
Expand Down

0 comments on commit 046f9f5

Please sign in to comment.