]> granicus.if.org Git - libmatroska/commitdiff
bump C++ requirement to C++14 c++14
authorMoritz Bunkus <mo@bunkus.online>
Sun, 22 May 2022 20:12:32 +0000 (22:12 +0200)
committerMoritz Bunkus <mo@bunkus.online>
Sun, 22 May 2022 20:12:32 +0000 (22:12 +0200)
This follows libebml's recent bump to C++14.

CMakeLists.txt
README.md

index e2d4f7df2767a5c1cc1593c2414f0d3df1e6053d..5336f2d9572cfcb12a0294618d2a88bfcd0abede 100644 (file)
@@ -9,7 +9,7 @@ find_package(EBML 1.4.2 REQUIRED)
 
 include(GNUInstallDirs)
 
-set(CMAKE_CXX_STANDARD 11)
+set(CMAKE_CXX_STANDARD 14)
 set(CMAKE_CXX_STANDARD_REQUIRED ON)
 
 set(libmatroska_SOURCES
index 4479f8bd62978b10418d4c651740c22a3aff230c..01ac89166e5fa8d7dbe038f191ad42f563830de1 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,7 +5,8 @@ a C++ library to parse and create Matroska files
 
 ## Building and installing the library
 
-libmatroska is based on `cmake`. It requires a C++ compiler as well as
+libmatroska is based on `cmake`. It requires a C++ compiler compatible
+with the C++14 standard as well as
 [libebml](https://github.com/Matroska-Org/libebml). This means that
 the normal build process consists of the usual steps: