diff options
author | Brad King <brad.king@kitware.com> | 2019-07-24 11:29:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-07-24 12:04:20 (GMT) |
commit | 161b33f12b9a225607a4ea8339eabd4875bebbfe (patch) | |
tree | c5e82a83ee2139ed0590f0198508c29f3a6b0e9d /Help/guide/tutorial/Step5 | |
parent | 5cfc39127e4b9e20d9fdfca885b38272909c5694 (diff) | |
download | CMake-161b33f12b9a225607a4ea8339eabd4875bebbfe.zip CMake-161b33f12b9a225607a4ea8339eabd4875bebbfe.tar.gz CMake-161b33f12b9a225607a4ea8339eabd4875bebbfe.tar.bz2 |
Help/guide/tutorial: Revert "require C++14 for the Tutorial"
Revert the changes from commit a2a90f41e3 (Tests: require C++14 for the
Tutorial, 2019-03-21, v3.15.0-rc1~41^2~2) for the content in its new
home. In commit d50b31be35 (Clang: For MSVC ABI do not use modes older
than C++14, 2019-07-23) we fixed the C++ standard selection for GNU-like
Clang with the MSVC ABI so the test code itself no longer needs to do
it. In particular, changing the tests in this way broke the tutorial's
narrative.
Diffstat (limited to 'Help/guide/tutorial/Step5')
-rw-r--r-- | Help/guide/tutorial/Step5/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step5/CMakeLists.txt b/Help/guide/tutorial/Step5/CMakeLists.txt index 76b9179..dac9b45 100644 --- a/Help/guide/tutorial/Step5/CMakeLists.txt +++ b/Help/guide/tutorial/Step5/CMakeLists.txt @@ -1,7 +1,8 @@ cmake_minimum_required(VERSION 3.3) project(Tutorial) -set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD_REQUIRED True) # should we use our own math functions option(USE_MYMATH "Use tutorial provided math implementation" ON) |