diff options
author | Jerry Turcios <jerryturcios08@gmail.com> | 2018-10-24 10:59:24 -0400 |
---|---|---|
committer | Jerry Turcios <jerryturcios08@gmail.com> | 2018-10-24 10:59:24 -0400 |
commit | 2801b238078750da1cb5e1f8519a3caa749df753 (patch) | |
tree | f88b0e4bfc353ec3de22f3e121e780164848380e | |
parent | 6e37201260b135d76f56af63589fd2b1c50a1ed3 (diff) | |
parent | 3bb00b7ead35ca3a9b5817ce1ab78050fe6be0e3 (diff) | |
download | googletest-2801b238078750da1cb5e1f8519a3caa749df753.tar.gz googletest-2801b238078750da1cb5e1f8519a3caa749df753.tar.bz2 googletest-2801b238078750da1cb5e1f8519a3caa749df753.zip |
Merge branch 'master' of https://github.com/google/googletest
-rw-r--r-- | googletest/README.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/googletest/README.md b/googletest/README.md index 713cb673..133f6859 100644 --- a/googletest/README.md +++ b/googletest/README.md @@ -192,6 +192,15 @@ Google Test already has a CMake option for this: `gtest_force_shared_crt` Enabling this option will make gtest link the runtimes dynamically too, and match the project in which it is included. +#### C++ Standard Version + +An environment that supports C++11 is required in order to successfully build +Google Test. 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. If this +is not feasible, for example in a C project using Google Test for validation, +then it can be specified by adding it to the options for cmake via the +`DCMAKE_CXX_FLAGS` option. + ### Legacy Build Scripts Before settling on CMake, we have been providing hand-maintained build |