summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorRyan Schmidt <git@ryandesign.com>2023-06-19 11:18:12 (GMT)
committerGitHub <noreply@github.com>2023-06-19 11:18:12 (GMT)
commit124bc587f0f6157f0bf49a05deb68956db307732 (patch)
tree8d4362d5541f72d951686c395eaaf44b157d330d /googletest
parent9b12f749fa972d08703d8459e9bf3239617491ca (diff)
downloadgoogletest-124bc587f0f6157f0bf49a05deb68956db307732.zip
googletest-124bc587f0f6157f0bf49a05deb68956db307732.tar.gz
googletest-124bc587f0f6157f0bf49a05deb68956db307732.tar.bz2
Change C++11 requirement to C++14refs/pull/4286/head
Version 1.13.x and later require C++14. Also fix missing closing backtick.
Diffstat (limited to 'googletest')
-rw-r--r--googletest/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/googletest/README.md b/googletest/README.md
index 4cad12f..6bbd7f8 100644
--- a/googletest/README.md
+++ b/googletest/README.md
@@ -124,10 +124,10 @@ match the project in which it is included.
#### C++ Standard Version
-An environment that supports C++11 is required in order to successfully build
+An environment that supports C++14 is required in order to successfully build
GoogleTest. One way to ensure this is to specify the standard in the top-level
-project, for example by using the `set(CMAKE_CXX_STANDARD 11)` command along
-with `set(CMAKE_CXX_STANDARD_REQUIRED ON). If this is not feasible, for example
+project, for example by using the `set(CMAKE_CXX_STANDARD 14)` command along
+with `set(CMAKE_CXX_STANDARD_REQUIRED ON)`. If this is not feasible, for example
in a C project using GoogleTest for validation, then it can be specified by
adding it to the options for cmake via the`-DCMAKE_CXX_FLAGS` option.