diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-10-01 11:38:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-01 11:38:26 -0400 |
commit | 6316d8943313d0c267417bb7d2fba4716a8bb6ee (patch) | |
tree | bb701e91ff9809c1d05576bdb6890325ca4b847c | |
parent | 440527a61e1c91188195f7de212c63c77e8f0a45 (diff) | |
parent | cba3474435f948e37a76f4dee0c9e717e29f210c (diff) | |
download | googletest-6316d8943313d0c267417bb7d2fba4716a8bb6ee.tar.gz googletest-6316d8943313d0c267417bb7d2fba4716a8bb6ee.tar.bz2 googletest-6316d8943313d0c267417bb7d2fba4716a8bb6ee.zip |
Merge pull request #1872 from jerryturcios08/master
Add C++11 standard in the root CMakeLists.txt
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d7732116..b6b938f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,6 +6,7 @@ endif (POLICY CMP0048) project(googletest-distribution) set(GOOGLETEST_VERSION 1.9.0) +set(CMAKE_CXX_STANDARD 11 CACHE STRING "Set the C++ standard to be used for compiling") enable_testing() |