]> git.sesse.net Git - movit/commitdiff
Move to C++14, since newer Google Test requires that now.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 15 Jul 2023 15:25:49 +0000 (17:25 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 15 Jul 2023 15:25:49 +0000 (17:25 +0200)
README
configure.ac

diff --git a/README b/README
index dfddd7ad596dc633727cb718aa4e7e7bbadc0643..0d99fabb1a1eea842a7bb5c2505cc249f98d378c 100644 (file)
--- a/README
+++ b/README
@@ -17,7 +17,7 @@ TL;DR, please give me download link and system demands
 
 OK, you need
 
-* A C++11 compiler. GCC will do. (I haven't tried Windows, but it
+* A C++14 compiler. GCC will do. (I haven't tried Windows, but it
   works fine on Linux and OS X, and Movit is not very POSIX-bound.)
 * GNU Make.
 * A GPU capable of running OpenGL 3.0 or newer. GLES3 (for mobile devices)
index 5bc98f015e5d6e4891f3fb322270aef6f9280391..590845adaf09819ca0a2451f6738b2604e7b2d76 100644 (file)
@@ -12,7 +12,7 @@ PKG_CHECK_MODULES([Eigen3], [eigen3])
 PKG_CHECK_MODULES([epoxy], [epoxy])
 PKG_CHECK_MODULES([FFTW3], [fftw3])
 
-CXXFLAGS="$CXXFLAGS -std=gnu++11"
+CXXFLAGS="$CXXFLAGS -std=gnu++14"
 
 # Needed for unit tests and the demo app.
 with_demo_app=yes