summaryrefslogtreecommitdiff
path: root/Help/guide/tutorial/Step5
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-07-24 07:29:21 -0400
committerBrad King <brad.king@kitware.com>2019-07-24 08:04:20 -0400
commit161b33f12b9a225607a4ea8339eabd4875bebbfe (patch)
treec5e82a83ee2139ed0590f0198508c29f3a6b0e9d /Help/guide/tutorial/Step5
parent5cfc39127e4b9e20d9fdfca885b38272909c5694 (diff)
downloadcmake-161b33f12b9a225607a4ea8339eabd4875bebbfe.tar.gz
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.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step5/CMakeLists.txt b/Help/guide/tutorial/Step5/CMakeLists.txt
index 76b917908b..dac9b45a57 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)