diff options
author | Steven <tshao.s@gmail.com> | 2022-10-16 18:41:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-10-17 14:36:15 (GMT) |
commit | 5b7e465be3b2b30dcfa271bbc420fdf622505ca3 (patch) | |
tree | e1b7599f2c4d5ebdc5a6362a5da61534b3227b29 /Help/guide | |
parent | 787fc8caa8c46b7c29e05c9b367f8e85665845d4 (diff) | |
download | CMake-5b7e465be3b2b30dcfa271bbc420fdf622505ca3.zip CMake-5b7e465be3b2b30dcfa271bbc420fdf622505ca3.tar.gz CMake-5b7e465be3b2b30dcfa271bbc420fdf622505ca3.tar.bz2 |
Tutorial: Fix variable name typo in step 1
`CMAKE_CXX_REQUIRED_STANDARD` => `CMAKE_CXX_STANDARD_REQUIRED`
Diffstat (limited to 'Help/guide')
-rw-r--r-- | Help/guide/tutorial/Step1/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step1/CMakeLists.txt b/Help/guide/tutorial/Step1/CMakeLists.txt index 282951a..6fcce90 100644 --- a/Help/guide/tutorial/Step1/CMakeLists.txt +++ b/Help/guide/tutorial/Step1/CMakeLists.txt @@ -5,7 +5,7 @@ # TODO 7: Set the project version number as 1.0 in the above project command # TODO 6: Set the variable CMAKE_CXX_STANDARD to 11 -# and the variable CMAKE_CXX_REQUIRED_STANDARD to True +# and the variable CMAKE_CXX_STANDARD_REQUIRED to True # TODO 8: Use configure_file to configure and copy TutorialConfig.h.in to # TutorialConfig.h |