Skip to content

Commit

Permalink
Change C++11 requirement to C++14
Browse files Browse the repository at this point in the history
Version 1.13.x and later require C++14.

Also fix missing closing backtick.
  • Loading branch information
ryandesign authored Jun 19, 2023
1 parent 9b12f74 commit 124bc58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions googletest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 124bc58

Please sign in to comment.