Skip to content

Commit

Permalink
drop CMake older than 3.5
Browse files Browse the repository at this point in the history
It generates a warning with newer versions of CMake.
3.4 was released in 2015. We require C++17 with compilers only available in 2017/2018.
If your CMake is older than your toolchain, you have a problem.

There's no need to support legacy CMake going forward in libebml 2/libmatroska 2.
  • Loading branch information
robUx4 committed Feb 24, 2024
1 parent 49f0e33 commit dc80e19
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.1.2)
cmake_minimum_required(VERSION 3.5)

project(matroska VERSION 2.0.0)

Expand Down

0 comments on commit dc80e19

Please sign in to comment.